|
@@ -5,12 +5,16 @@ var $ = require('jquery');
|
|
var Themes = function() { };
|
|
var Themes = function() { };
|
|
|
|
|
|
Themes.prototype = {
|
|
Themes.prototype = {
|
|
- moveChooser: function() {
|
|
|
|
- var $chooser = $('.theme-chooser').detach();
|
|
|
|
- $('.user-tools-welcome-msg').after($chooser);
|
|
|
|
|
|
+ moveChooser: function($chooser) {
|
|
|
|
+ $chooser
|
|
|
|
+ .detach()
|
|
|
|
+ .insertAfter($('.user-tools-welcome-msg'))
|
|
|
|
+ .addClass('initialized');
|
|
},
|
|
},
|
|
- initChooser: function() {
|
|
|
|
- $('.choose-theme').on('click', function (e) {
|
|
|
|
|
|
+ initChooser: function($chooser) {
|
|
|
|
+ var $links = $chooser.find('.choose-theme');
|
|
|
|
+
|
|
|
|
+ $links.on('click', function (e) {
|
|
e.preventDefault();
|
|
e.preventDefault();
|
|
|
|
|
|
var $link = $(this);
|
|
var $link = $(this);
|
|
@@ -45,14 +49,16 @@ Themes.prototype = {
|
|
.remove();
|
|
.remove();
|
|
});
|
|
});
|
|
|
|
|
|
- $('.choose-theme').removeClass('selected');
|
|
|
|
|
|
+ $links.removeClass('selected');
|
|
$link.addClass('selected');
|
|
$link.addClass('selected');
|
|
});
|
|
});
|
|
},
|
|
},
|
|
run: function() {
|
|
run: function() {
|
|
|
|
+ var $chooser = $('.theme-chooser');
|
|
|
|
+
|
|
try {
|
|
try {
|
|
- this.moveChooser();
|
|
|
|
- this.initChooser();
|
|
|
|
|
|
+ this.moveChooser($chooser);
|
|
|
|
+ this.initChooser($chooser);
|
|
} catch (e) {
|
|
} catch (e) {
|
|
console.error(e, e.stack);
|
|
console.error(e, e.stack);
|
|
}
|
|
}
|