|
|
|
@ -70,6 +70,10 @@ function initAfterI18nMessagesLoaded(reload, templates, callbacks) { |
|
|
|
|
$(input).change(function(){ |
|
|
|
|
var val = (isRadioOrcheckbox ? $(this).is(":checked") : $(this).val()); |
|
|
|
|
parameters.value(key, val); |
|
|
|
|
if(key != "themes"){ |
|
|
|
|
parameters.value("show", "3"); |
|
|
|
|
app.reload();
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
})(input); |
|
|
|
|
}); |
|
|
|
@ -79,6 +83,7 @@ function initAfterI18nMessagesLoaded(reload, templates, callbacks) { |
|
|
|
|
app.onEdit = true; |
|
|
|
|
$(document.body).addClass("onEdit"); |
|
|
|
|
if(callbacks.onEdit && typeof callbacks.onEdit === 'function') { |
|
|
|
|
parameters.value("show", "1"); |
|
|
|
|
callbacks.onEdit(app); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -86,10 +91,12 @@ function initAfterI18nMessagesLoaded(reload, templates, callbacks) { |
|
|
|
|
app.onEdit = false;
|
|
|
|
|
$(document.body).removeClass("onEdit"); |
|
|
|
|
if(callbacks.onView && typeof callbacks.onView === 'function') { |
|
|
|
|
parameters.value("show", "2"); |
|
|
|
|
callbacks.onView(app); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
$("button[role=reload]").click(function(){ |
|
|
|
|
parameters.value("show", "3"); |
|
|
|
|
app.reload(); |
|
|
|
|
}); |
|
|
|
|
$("button[role=help]").click(function(){ |
|
|
|
@ -133,7 +140,10 @@ var Parameters = (function(){ |
|
|
|
|
else { |
|
|
|
|
log("Set parameter value ["+value+"] for key : ["+key+"]"); |
|
|
|
|
this.delegate.setPreference(key, value); |
|
|
|
|
this.container.trigger("preferenceChange", {key: key, value: value});
|
|
|
|
|
this.container.trigger("preferenceChange", { |
|
|
|
|
key: key,
|
|
|
|
|
value: value |
|
|
|
|
});
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|