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) {
209
209
this . txtPendingCount . html ( "<span class=\"text-highlight\">" + this . pendingRequests . length + "</span>" ) ;
210
210
this . sectionPending . stop ( ) ;
211
211
if ( pending . length ) {
212
- this . sectionPending . fadeIn ( 500 ) ;
212
+ this . sectionPending . animate ( { opacity : 0.5 } , 500 ) ;
213
213
}
214
214
else {
215
- this . sectionPending . fadeOut ( 200 ) ;
215
+ this . sectionPending . animate ( { opacity : 0 } , 200 ) ;
216
216
}
217
217
} ;
218
218
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> {
241
241
242
242
this . sectionPending . stop ( ) ;
243
243
if ( pending . length ) {
244
- this . sectionPending . fadeIn ( 500 ) ;
244
+ this . sectionPending . animate ( { opacity : 0.5 } , 500 ) ;
245
245
}
246
246
else {
247
- this . sectionPending . fadeOut ( 200 ) ;
247
+ this . sectionPending . animate ( { opacity : 0 } , 200 ) ;
248
248
}
249
249
}
250
250
You can’t perform that action at this time.
0 commit comments