FIX: Disable loading below HTML, we have our own spinner for that and it
broke scrolling on some custom CSS.
This commit is contained in:
parent
917a91eb40
commit
5f6f85b182
|
@ -78,7 +78,7 @@
|
||||||
defaultHeight="200"
|
defaultHeight="200"
|
||||||
content=postStream.posts
|
content=postStream.posts
|
||||||
slackRatio="15"
|
slackRatio="15"
|
||||||
loadingHTML=controller.loadingHTML
|
loadingHTML=""
|
||||||
preservesContext="true"
|
preservesContext="true"
|
||||||
uncloakDefault="true"
|
uncloakDefault="true"
|
||||||
offsetFixedTop="header"
|
offsetFixedTop="header"
|
||||||
|
|
|
@ -201,8 +201,9 @@
|
||||||
for (var j=bottomView; j<childViews.length; j++) {
|
for (var j=bottomView; j<childViews.length; j++) {
|
||||||
var checkView = childViews[j];
|
var checkView = childViews[j];
|
||||||
if (!checkView._containedView) {
|
if (!checkView._containedView) {
|
||||||
if (!checkView.get('loading')) {
|
var loadingHTML = this.get('loadingHTML');
|
||||||
checkView.$().html(this.get('loadingHTML'));
|
if (!Em.isEmpty(loadingHTML) && !checkView.get('loading')) {
|
||||||
|
checkView.$().html(loadingHTML);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue