Authored by chenl

移除了一些打印log。review by liben。

... ... @@ -43,7 +43,6 @@ export default class IndexListView extends React.Component {
if (name == '0') {
name = '0-9';
}
console.log(name);
this.props.onLetterPress && this.props.onLetterPress(i,name);
break;
}
... ...
... ... @@ -69,7 +69,6 @@ class MessageCenterContainer extends React.Component {
}
_onPressPost(id) {
console.log('post id = ' + id);
if (id) {
this.props.actions.goToPost(id);
}
... ...
... ... @@ -32,7 +32,6 @@ export default class Video extends React.Component {
}
render() {
console.log(width);
let {resource,videoCounts} = this.props;
if (!resource) {
return null;
... ...
... ... @@ -106,7 +106,6 @@ class SearchContainer extends Component {
}
_onPressProduct(data, index='0') {
console.log(index)
ReactNative.NativeModules.YH_SearchHelper.goToProductDetail(data.toJS(), index, this.props.search.productList.filter);
}
... ...
... ... @@ -33,7 +33,6 @@ const {
export function searchKeywordChanged(keyword) {
return (dispatch, getState) => {
console.log(keyword)
let status = 0;
if (keyword) {
status = 1;
... ...