File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -209,10 +209,10 @@ var MainPanelView = (function (_super) {
209209 this . txtPendingCount . html ( "<span class=\"text-highlight\">" + this . pendingRequests . length + "</span>" ) ;
210210 this . sectionPending . stop ( ) ;
211211 if ( pending . length ) {
212- this . sectionPending . fadeIn ( 500 ) ;
212+ this . sectionPending . animate ( { opacity : 0.5 } , 500 ) ;
213213 }
214214 else {
215- this . sectionPending . fadeOut ( 200 ) ;
215+ this . sectionPending . animate ( { opacity : 0 } , 200 ) ;
216216 }
217217 } ;
218218 MainPanelView . prototype . errorPanelSelectedClick = function ( ) {
Original file line number Diff line number Diff line change @@ -241,10 +241,10 @@ export class MainPanelView extends view.View<any> {
241241
242242 this . sectionPending . stop ( ) ;
243243 if ( pending . length ) {
244- this . sectionPending . fadeIn ( 500 ) ;
244+ this . sectionPending . animate ( { opacity : 0.5 } , 500 ) ;
245245 }
246246 else {
247- this . sectionPending . fadeOut ( 200 ) ;
247+ this . sectionPending . animate ( { opacity : 0 } , 200 ) ;
248248 }
249249 }
250250
You can’t perform that action at this time.
0 commit comments