File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ var MainPanelView = (function (_super) {
73
73
} ) ;
74
74
} ) ;
75
75
_this . div ( {
76
- style : 'display:inline-block'
76
+ style : 'display:inline-block;overflow-x:visible;white-space:nowrap; '
77
77
} , function ( ) {
78
78
_this . span ( {
79
79
style : 'margin-left:10px; transition: color 1s' ,
@@ -184,11 +184,11 @@ var MainPanelView = (function (_super) {
184
184
var status_1 = fileStatusCache_1 . getFileStatus ( filePath ) ;
185
185
_this . fileStatus . removeClass ( 'icon-x icon-check text-error text-success hidden' ) ;
186
186
if ( status_1 . emitDiffers || status_1 . modified ) {
187
- _this . fileStatus . text ( 'Js emit is outdated ' ) ;
187
+ _this . fileStatus . text ( 'JS Outdated ' ) ;
188
188
_this . fileStatus . addClass ( 'icon-x text-error' ) ;
189
189
}
190
190
else {
191
- _this . fileStatus . text ( 'Js emit up to date ' ) ;
191
+ _this . fileStatus . text ( 'JS Current ' ) ;
192
192
_this . fileStatus . addClass ( 'icon-check text-success' ) ;
193
193
}
194
194
}
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export class MainPanelView extends view.View<any> {
88
88
} ) ;
89
89
90
90
this . div ( {
91
- style : 'display:inline-block'
91
+ style : 'display:inline-block;overflow-x:visible;white-space:nowrap; '
92
92
} , ( ) => {
93
93
this . span ( {
94
94
style : 'margin-left:10px; transition: color 1s' , // Added transition to make it easy to see *yes I just did this compile*.
@@ -212,10 +212,10 @@ export class MainPanelView extends view.View<any> {
212
212
let status = getFileStatus ( filePath ) ;
213
213
this . fileStatus . removeClass ( 'icon-x icon-check text-error text-success hidden' ) ;
214
214
if ( status . emitDiffers || status . modified ) {
215
- this . fileStatus . text ( 'Js emit is outdated ' ) ;
215
+ this . fileStatus . text ( 'JS Outdated ' ) ;
216
216
this . fileStatus . addClass ( 'icon-x text-error' ) ;
217
217
} else {
218
- this . fileStatus . text ( 'Js emit up to date ' ) ;
218
+ this . fileStatus . text ( 'JS Current ' ) ;
219
219
this . fileStatus . addClass ( 'icon-check text-success' ) ;
220
220
}
221
221
}
You can’t perform that action at this time.
0 commit comments