WEBUI JS: Debugging tab - change save to apply
This commit is contained in:
parent
c2661b0dc7
commit
f0d25a5195
2 changed files with 9 additions and 5 deletions
|
@ -182,6 +182,10 @@
|
|||
background-image: url(../icons/save.png) !important;
|
||||
}
|
||||
|
||||
.apply {
|
||||
background-image: url(../icons/accept.png) !important;
|
||||
}
|
||||
|
||||
.rec {
|
||||
background-image: url(../icons/rec.png) !important;
|
||||
}
|
||||
|
|
|
@ -47,9 +47,9 @@ tvheadend.tvhlog = function(panel, index) {
|
|||
* ***************************************************************/
|
||||
|
||||
var saveButton = new Ext.Button({
|
||||
text: "Save configuration",
|
||||
tooltip: 'Save changes made to configuration below',
|
||||
iconCls: 'save',
|
||||
text: "Apply configuration (run-time only)",
|
||||
tooltip: 'Apply changes made bellow to the run-time configuration<br/>They will be lost on restart.',
|
||||
iconCls: 'apply',
|
||||
handler: saveChanges
|
||||
});
|
||||
|
||||
|
@ -109,9 +109,9 @@ tvheadend.tvhlog = function(panel, index) {
|
|||
params: {
|
||||
op: 'saveSettings'
|
||||
},
|
||||
waitMsg: 'Saving Data...',
|
||||
waitMsg: 'Applying Data...',
|
||||
failure: function(form, action) {
|
||||
Ext.Msg.alert('Save failed', action.result.errormsg);
|
||||
Ext.Msg.alert('Apply failed', action.result.errormsg);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue