Turning off queueing for dashboard stories.

This commit is contained in:
Samuel Clay 2020-07-14 18:01:33 -04:00
parent 114641f05d
commit 74fdefb53e
2 changed files with 3 additions and 3 deletions

View file

@ -12648,7 +12648,7 @@ form.opml_import_form input {
overflow: hidden;
padding: 12px;
position: relative;
width: 50%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
@ -12662,7 +12662,7 @@ form.opml_import_form input {
}
.NB-module-search-input input {
width: 196px;
width: 85%;
float: left;
font-size: 13px;
padding: 4px 20px 4px 6px;

View file

@ -44,7 +44,7 @@ NEWSBLUR.AssetModel = Backbone.Router.extend({
domCompleteTrigger: true});
this.ajax['statistics'] = $.manageAjax.create('statistics', {queue: 'clear', abortOld: true});
this.ajax['interactions'] = $.manageAjax.create('interactions', {queue: 'clear', abortOld: true});
this.ajax['dashboard'] = $.manageAjax.create('dashboard', {queue: true});
this.ajax['dashboard'] = $.manageAjax.create('dashboard', {queue: false});
$.ajaxSettings.traditional = true;
},