No schemestring update if focus

This commit is contained in:
Jeroen De Meerleer 2019-02-22 16:44:12 +01:00
parent c9c030bcbf
commit 1c20886442

View file

@ -87,9 +87,10 @@
if ($("#id_frio_login_bg_color").length) {
theme.login_bg_color = $("#id_frio_login_bg_color").val();
}
var share_string = JSON.stringify(theme);
$("#id_frio_share_string").val(share_string);
if (!($("#id_frio_share_string").is(":focus"))){
var share_string = JSON.stringify(theme);
$("#id_frio_share_string").val(share_string);
}
}
// interval because jquery.val does not trigger events