35 lines
1,005 B
JavaScript
35 lines
1,005 B
JavaScript
'use strict';
|
|
|
|
pandora.ui.resetUIDialog = function(data) {
|
|
|
|
var that = pandora.ui.iconDialog({
|
|
buttons: [
|
|
Ox.Button({
|
|
id: 'cancel',
|
|
title: Ox._('Don\'t Reset')
|
|
})
|
|
.bindEvent({
|
|
click: function() {
|
|
that.close();
|
|
}
|
|
}),
|
|
Ox.Button({
|
|
id: 'reset',
|
|
title: Ox._('Reset')
|
|
}).bindEvent({
|
|
click: function() {
|
|
that.close();
|
|
pandora.$ui.preferencesDialog.close();
|
|
pandora.UI.set({page: ''});
|
|
pandora.UI.reset();
|
|
}
|
|
})
|
|
],
|
|
content: Ox._('Are you sure you want to reset all UI settings?'),
|
|
keys: {enter: 'reset', escape: 'cancel'},
|
|
title: Ox._('Reset UI Settings')
|
|
});
|
|
|
|
return that;
|
|
|
|
};
|