Remove double space

Change-Id: I01098eb637bbfe6170901dae68d5ea0fe1570aa6
This commit is contained in:
Amir E. Aharoni
2012-08-16 18:39:02 +03:00
parent 6c7e82ff79
commit a080bf8056
3 changed files with 6 additions and 6 deletions

View File

@@ -136,7 +136,7 @@
var $fontOption = $( "<option>" )
.attr( "value", font ).text( font );
$fontSelector.append( $fontOption );
$fontOption.attr( 'selected', savedFont === font );
$fontOption.attr( 'selected', savedFont === font );
} );
}
var $systemFont = $( "<option>" ).val( 'system' ).text( 'System font' );
@@ -216,6 +216,6 @@
// Register this module to language settings modules
$.fn.languagesettings.modules = $.extend( $.fn.languagesettings.modules, {
display: DisplaySettings
display: DisplaySettings
} );
} ) ( jQuery );