624680bb93
- This is a first pass at getting a more logical structure. The focus is on moving from admin/frontend to client/server. - The location of the databases is highly important, this isn't expected to change again In the future - client/assets should probably become public/ - more stuff should be shared (helpers etc) - cleanup some confusion around tpl and views
25 lines
586 B
JavaScript
25 lines
586 B
JavaScript
/*global window, document, Ghost, $, _, Backbone, JST */
|
|
(function () {
|
|
"use strict";
|
|
|
|
Ghost.Views.Debug = Ghost.View.extend({
|
|
events: {
|
|
"click .settings-menu a": "handleMenuClick"
|
|
},
|
|
|
|
handleMenuClick: function (ev) {
|
|
ev.preventDefault();
|
|
|
|
var $target = $(ev.currentTarget);
|
|
|
|
// Hide the current content
|
|
this.$(".settings-content").hide();
|
|
|
|
// Show the clicked content
|
|
this.$("#debug-" + $target.attr("class")).show();
|
|
|
|
return false;
|
|
}
|
|
});
|
|
|
|
}()); |