No schemestring update if focus
This commit is contained in:
parent
a8cc4b3362
commit
bf04bccc77
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue