@phoenix-plugin-registry/swmitra.html-designer
Version:
NOW WITH RESPONSIVE DESIGN TOOLS (BETA)! Design and customize web ui with HTML and CSS. Now with taggable Design snippet/bookmark support.
18 lines (14 loc) • 541 B
JavaScript
/**
* @author Swagatam Mitra
*/
/*jslint vars: true, plusplus: true, devel: true, nomen: true, indent: 4, maxerr: 50 */
/*global define, document, console, brackets, $, Mustache */
define(function (require, exports, module) {
"use strict";
$(document).on("click","#launch-toolbox",function(event){
$("#docked-toolbox,#html-design-editor,#grid-settings-container").toggleClass('toolboxDocked');
$(this).toggleClass('activated');
event.preventDefault();
event.stopPropagation();
});
});