@@ -3702,18 +3702,20 @@ var ICEcoder = {
3702
3702
styleNode . setAttribute ( 'type' , 'text/css' ) ;
3703
3703
styleNode . setAttribute ( 'href' , settings . themeURL ) ;
3704
3704
this . content . contentWindow . document . getElementsByTagName ( 'head' ) [ 0 ] . appendChild ( styleNode ) ;
3705
- activeLineBG =
3706
- // Light themes
3707
- - 1 < [ "base16-light" , "chrome-devtools" , "duotone-light" , "eclipse" , "eiffel" , "elegant" , "mdn-like" , "idle" , "iplastic" , "ir_white" , "johnny" , "juicy" , "neat" , "neo" , "solarized" , "ttcn" , "xq-light" ] . indexOf ( this . theme )
3708
- ? "#ccc"
3709
- // Dark themes
3710
- : - 1 < [ "3024-night" , "all-hallow-eve" , "black-pearl-ii" , "blackboard" , "colorforth" , "django" , "emacs-strict" , "fade-to-grey" , "fake" , "glitterbomb" , "isotope" , "ir_black" , "liquibyte" , "monokai-fannonedition" , "oceanic" , "night" , "spectacular" , "sunburst" , "the-matrix" , "tomorrow-night-blue" , "tomorrow-night-bright" , "tomorrow-night-eighties" , "vibrant-ink" , "xq-dark" , "zenburn" ] . indexOf ( this . theme )
3711
- ? "#222"
3712
- // Other themes
3713
- : "#000" ;
3714
3705
this . switchTab ( this . selectedTab ) ;
3715
3706
}
3716
3707
3708
+ // Set the active line color
3709
+ activeLineBG =
3710
+ // Light themes
3711
+ - 1 < [ "base16-light" , "chrome-devtools" , "duotone-light" , "eclipse" , "eiffel" , "elegant" , "mdn-like" , "idle" , "iplastic" , "ir_white" , "johnny" , "juicy" , "neat" , "neo" , "solarized" , "ttcn" , "xq-light" ] . indexOf ( this . theme )
3712
+ ? "#ccc"
3713
+ // Dark themes
3714
+ : - 1 < [ "3024-night" , "all-hallow-eve" , "black-pearl-ii" , "blackboard" , "colorforth" , "django" , "emacs-strict" , "fade-to-grey" , "fake" , "glitterbomb" , "isotope" , "ir_black" , "liquibyte" , "monokai-fannonedition" , "oceanic" , "night" , "spectacular" , "sunburst" , "the-matrix" , "tomorrow-night-blue" , "tomorrow-night-bright" , "tomorrow-night-eighties" , "vibrant-ink" , "xq-dark" , "zenburn" ] . indexOf ( this . theme )
3715
+ ? "#222"
3716
+ // Other themes
3717
+ : "#000" ;
3718
+
3717
3719
// Check/uncheck Code Assist setting
3718
3720
if ( settings . codeAssist !== this . codeAssist ) {
3719
3721
this . codeAssistToggle ( ) ;
@@ -4086,7 +4088,7 @@ var ICEcoder = {
4086
4088
let winTitle ;
4087
4089
4088
4090
if ( false === this . loadingFile ) {
4089
- winTitle = "ICEcoder v " + this . versionNo ;
4091
+ winTitle = "ICEcoder v" + this . versionNo ;
4090
4092
for ( let i = 1 ; i <= this . savedPoints . length ; i ++ ) {
4091
4093
if ( this . savedPoints [ i - 1 ] !== this . getcMInstance ( i ) . changeGeneration ( ) ) {
4092
4094
// We have an unsaved tab, indicate that in the title
0 commit comments