added skins tab; closes #1293

v1.18.x
psychobunny 11 years ago
parent d89f280c73
commit c76a073482

@ -5,8 +5,8 @@ define(['forum/admin/settings'], function(Settings) {
var Themes = {};
function highlightSelectedTheme(themeId) {
$('#themes li[data-theme]').removeClass('btn-warning');
$('#themes li[data-theme="' + themeId + '"]').addClass('btn-warning');
$('.themes li[data-theme]').removeClass('btn-warning');
$('.themes li[data-theme="' + themeId + '"]').addClass('btn-warning');
}
Themes.init = function() {
@ -26,7 +26,7 @@ define(['forum/admin/settings'], function(Settings) {
themeType = parentEl.attr('data-type'),
cssSrc = parentEl.attr('data-css'),
themeId = parentEl.attr('data-theme');
socket.emit('admin.themes.set', {
type: themeType,
id: themeId,
@ -228,7 +228,7 @@ define(['forum/admin/settings'], function(Settings) {
data: widgetData
});
});
console.log(template, location, widgets);
socket.emit('admin.widgets.set', {
template: template,
location: location,

@ -158,8 +158,7 @@ var fs = require('fs'),
break;
case 'bootswatch':
themeData['theme:src'] = data.src;
db.setObject('config', themeData, callback);
db.setObjectField('config', 'theme:src', data.src, callback);
break;
}
}

Loading…
Cancel
Save