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"
|
||||
content=postStream.posts
|
||||
slackRatio="15"
|
||||
loadingHTML=controller.loadingHTML
|
||||
loadingHTML=""
|
||||
preservesContext="true"
|
||||
uncloakDefault="true"
|
||||
offsetFixedTop="header"
|
||||
|
|
|
@ -201,8 +201,9 @@
|
|||
for (var j=bottomView; j<childViews.length; j++) {
|
||||
var checkView = childViews[j];
|
||||
if (!checkView._containedView) {
|
||||
if (!checkView.get('loading')) {
|
||||
checkView.$().html(this.get('loadingHTML'));
|
||||
var loadingHTML = this.get('loadingHTML');
|
||||
if (!Em.isEmpty(loadingHTML) && !checkView.get('loading')) {
|
||||
checkView.$().html(loadingHTML);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue