Close #3540
parent
aa8c6f3bdd
commit
c3821c2070
@ -0,0 +1,16 @@
|
||||
"use strict";
|
||||
/* global define, socket */
|
||||
|
||||
define('admin/settings/general', ['admin/settings'], function(Settings) {
|
||||
var Module = {}
|
||||
|
||||
Module.init = function() {
|
||||
$('button[data-action="removeLogo"]').on('click', function() {
|
||||
socket.emit('admin.settings.removeLogo', function() {
|
||||
app.alertSuccess('Logo removed');
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
return Module;
|
||||
});
|
Loading…
Reference in New Issue