diff --git a/public/src/forum/admin/appearance/widgets.js b/public/src/forum/admin/appearance/widgets.js
deleted file mode 100644
index f638c9fca2..0000000000
--- a/public/src/forum/admin/appearance/widgets.js
+++ /dev/null
@@ -1,198 +0,0 @@
-"use strict";
-/* global define, app, socket */
-
-define('forum/admin/extend/widgets', function() {
- var Widgets = {};
-
- Widgets.init = function() {
- prepareWidgets();
-
- $('#widgets .nav-pills a').on('click', function(ev) {
- var $this = $(this);
- $('#widgets .nav-pills li').removeClass('active');
- $this.parent().addClass('active');
-
- $('#widgets .tab-pane').removeClass('active');
- $('#widgets .tab-pane[data-template="' + $this.attr('data-template') + '"]').addClass('active');
-
- ev.preventDefault();
- return false;
- });
- };
-
- function prepareWidgets() {
- $('[data-location="drafts"]').insertAfter($('[data-location="drafts"]').closest('.tab-content'));
-
- $('#widgets .available-widgets .panel').draggable({
- helper: function(e) {
- return $(e.target).parents('.panel').clone().addClass('block').width($(e.target.parentNode).width());
- },
- distance: 10,
- connectToSortable: ".widget-area"
- });
-
- $('#widgets .available-containers .containers > [data-container-html]').draggable({
- helper: function(e) {
- var target = $(e.target);
- target = target.attr('data-container-html') ? target : target.parents('[data-container-html]');
-
- return target.clone().addClass('block').width(target.width()).css('opacity', '0.5');
- },
- distance: 10
- });
-
- function appendToggle(el) {
- if (!el.hasClass('block')) {
- el.addClass('block')
- .droppable({
- accept: '[data-container-html]',
- drop: function(event, ui) {
- var el = $(this);
-
- el.find('.panel-body .container-html').val(ui.draggable.attr('data-container-html'));
- el.find('.panel-body').removeClass('hidden');
- },
- hoverClass: "panel-info"
- })
- .children('.panel-heading')
- .append('
')
- .children('small').html('');
- }
- }
-
- $('#widgets .widget-area').sortable({
- update: function (event, ui) {
- appendToggle(ui.item);
- },
- connectWith: "div"
- }).on('click', '.toggle-widget', function() {
- $(this).parents('.panel').children('.panel-body').toggleClass('hidden');
- }).on('click', '.delete-widget', function() {
- var panel = $(this).parents('.panel');
-
- bootbox.confirm('Are you sure you wish to delete this widget?', function(confirm) {
- if (confirm) {
- panel.remove();
- }
- });
- }).on('dblclick', '.panel-heading', function() {
- $(this).parents('.panel').children('.panel-body').toggleClass('hidden');
- });
-
- $('#widgets .save').on('click', saveWidgets);
-
- function saveWidgets() {
- var total = $('#widgets [data-template][data-location]').length;
-
- $('#widgets [data-template][data-location]').each(function(i, el) {
- el = $(el);
-
- var template = el.attr('data-template'),
- location = el.attr('data-location'),
- area = el.children('.widget-area'),
- widgets = [];
-
- area.find('.panel[data-widget]').each(function() {
- var widgetData = {},
- data = $(this).find('form').serializeArray();
-
- for (var d in data) {
- if (data.hasOwnProperty(d)) {
- if (data[d].name) {
- widgetData[data[d].name] = data[d].value;
- }
- }
- }
-
- widgets.push({
- widget: $(this).attr('data-widget'),
- data: widgetData
- });
- });
-
- socket.emit('admin.widgets.set', {
- template: template,
- location: location,
- widgets: widgets
- }, function(err) {
- total--;
-
- if (err) {
- app.alertError(err.message);
- }
-
- if (total === 0) {
- app.alert({
- alert_id: 'admin:widgets',
- type: 'success',
- title: 'Widgets Updated',
- message: 'Successfully updated widgets',
- timeout: 2500
- });
- }
-
- });
- });
- }
-
- function populateWidget(widget, data) {
- if (data.title) {
- var title = widget.find('.panel-heading strong');
- title.text(title.text() + ' - ' + data.title);
- }
-
- widget.find('input, textarea').each(function() {
- var input = $(this),
- value = data[input.attr('name')];
-
- if (this.type === 'checkbox') {
- input.attr('checked', !!value);
- } else {
- input.val(value);
- }
- });
-
- return widget;
- }
-
- $.get(RELATIVE_PATH + '/api/admin/appearance/widgets', function(data) {
- var areas = data.areas;
-
- for(var i=0; i
-
Admin Control Panel
+
Admin Control Panel