Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/studio/static/js/wymeditor/skins/compact/skin.js
diff options
context:
space:
mode:
authorSebastian Silva <sebastian@sugarlabs.org>2011-11-16 07:56:19 (GMT)
committer Sebastian Silva <sebastian@sugarlabs.org>2011-11-16 07:56:19 (GMT)
commit82511a6fe2d29d50c1cdca4b2abb23ff681a1943 (patch)
treeff6359d68287417abfaaf49e492e2630239e60c9 /studio/static/js/wymeditor/skins/compact/skin.js
parent61517139f02df2ce417f465dfabdbf5dbe8f4063 (diff)
Major improvements in IDE usability.
Diffstat (limited to 'studio/static/js/wymeditor/skins/compact/skin.js')
-rw-r--r--studio/static/js/wymeditor/skins/compact/skin.js35
1 files changed, 0 insertions, 35 deletions
diff --git a/studio/static/js/wymeditor/skins/compact/skin.js b/studio/static/js/wymeditor/skins/compact/skin.js
deleted file mode 100644
index cfb7cc1..0000000
--- a/studio/static/js/wymeditor/skins/compact/skin.js
+++ /dev/null
@@ -1,35 +0,0 @@
-WYMeditor.SKINS['compact'] = {
-
- init: function(wym) {
-
- //move the containers panel to the top area
- jQuery(wym._options.containersSelector + ', '
- + wym._options.classesSelector, wym._box)
- .appendTo( jQuery("div.wym_area_top", wym._box) )
- .addClass("wym_dropdown")
- .css({"margin-right": "10px", "width": "120px", "float": "left"});
-
- //render following sections as buttons
- jQuery(wym._options.toolsSelector, wym._box)
- .addClass("wym_buttons")
- .css({"margin-right": "10px", "float": "left"});
-
- //make hover work under IE < 7
- jQuery(".wym_section", wym._box).hover(function(){
- jQuery(this).addClass("hover");
- },function(){
- jQuery(this).removeClass("hover");
- });
-
- var postInit = wym._options.postInit;
- wym._options.postInit = function(wym) {
-
- if(postInit) postInit.call(wym, wym);
- var rule = {
- name: 'body',
- css: 'background-color: #f0f0f0;'
- };
- wym.addCssRule( wym._doc.styleSheets[0], rule);
- };
- }
-};