Added semicolons
Этот коммит содержится в:
@@ -269,7 +269,7 @@ module.exports = React.createClass({
|
|||||||
_onTimeChange: function() {
|
_onTimeChange: function() {
|
||||||
this.wasForced = true;
|
this.wasForced = true;
|
||||||
this.preForcePosision = $(".post-list-holder-by-time").scrollTop();
|
this.preForcePosision = $(".post-list-holder-by-time").scrollTop();
|
||||||
this.forceUpdate()
|
this.forceUpdate();
|
||||||
},
|
},
|
||||||
getMorePosts: function(e) {
|
getMorePosts: function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|||||||
@@ -299,7 +299,7 @@ module.exports = React.createClass({
|
|||||||
componentWillUnmount: function() {
|
componentWillUnmount: function() {
|
||||||
PostStore.removeSelectedPostChangeListener(this._onChange);
|
PostStore.removeSelectedPostChangeListener(this._onChange);
|
||||||
PostStore.removeChangeListener(this._onChangeAll);
|
PostStore.removeChangeListener(this._onChangeAll);
|
||||||
UserStore.removeStatusesChangeListener(this._onTimeChange)
|
UserStore.removeStatusesChangeListener(this._onTimeChange);
|
||||||
},
|
},
|
||||||
_onChange: function() {
|
_onChange: function() {
|
||||||
if (this.isMounted()) {
|
if (this.isMounted()) {
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user