Updates hash with selected fonts when selected font changes.

This commit is contained in:
Mattias Blom 2017-01-02 22:01:21 +01:00
parent 3c8cc2d8b4
commit c3c5947d89
1 changed files with 10 additions and 1 deletions

View File

@ -328,6 +328,7 @@ function updateGutters(cm) {
$("#font-info p").hide();
$("." + font).show();
updateHash();
}
function setSize() {
@ -340,7 +341,15 @@ function updateGutters(cm) {
$(".CodeMirror").addClass("no-smooth");
}
}
function updateHash(){
var newHash = '#' + $("#select-font").val();
if(history.pushState) {
history.pushState(null, null, newHash);
}
else {
location.hash = newHash;
}
}
$(document).ready(function(){
//randomly select a theme