diff --git a/js/jquery.aWYSIWYG.js b/js/jquery.aWYSIWYG.js index f6fccaf..ed4e5c8 100644 --- a/js/jquery.aWYSIWYG.js +++ b/js/jquery.aWYSIWYG.js @@ -17,8 +17,7 @@ iFrame.height = textBox.height() + 10; iFrame.width = textBox.width() + 10; iFrame.style.backgroundColor = textBox.css('backgroundColor'); - iFrame.style.border = "1px solid #CCC"; - iFrame.style.borderTop = "1px solid #666"; + iFrame.style.border = "0px"; if(textBox.attr('class')){ iFrame.className = textBox.attr('class'); } @@ -58,20 +57,24 @@ // body.style.fontSize = "11"; // body.style.lineHeight = textBox.css('line-height'); body.style.margin = "0px"; + body.style.width = "auto"; + body.style.height = "auto"; body.style.padding = textBox.css('padding-left'); body.style.cursor = "text"; // apply external CSS if enabled if(settings.extStyles) { - css = document.createElement('link'); - css.type = "text/css"; - css.rel = "stylesheet"; - css.href = settings.extStyles; - - if($.browser.msie) { - Editor.documentElement.firstChild.appendChild(css); - } else { - Editor.getElementsByTagName("head")[0].appendChild(css); + for(var i=0;i"); */ if(options.icons) { - /* - toolbar = $("
\ - \ - | \ - \ - | \ - \ - \ - | \ - \ - | \ - \ - | \ - clean | \ - list\ -
"); - */ + toolbar = $("
\ + \ + | \ + \ + | \ + \ + \ + | \ + \ + | \ + \ + | \ + \ + | \ + clean\ +
"); + +/* toolbar = $("
\ \ \ list\
"); +*/ } else { /* toolbar = $("
\ @@ -193,24 +198,25 @@ }); } - // $('.undo', toolbar).click(function(){ applyToText('undo'); return false; }); - // $('.redo', toolbar).click(function(){ applyToText('redo'); return false; }); + $('.undo', toolbar).click(function(){ applyToText('undo'); return false; }); + $('.redo', toolbar).click(function(){ applyToText('redo'); return false; }); $('.bold', toolbar).click(function(){ applyToText('bold'); return false; }); $('.italic', toolbar).click(function(){ applyToText('italic'); return false; }); - // $('.alignLeft', toolbar).click(function(){ applyToText('justifyleft'); return false; }); - // $('.alignCenter', toolbar).click(function(){ applyToText('justifycenter'); return false; }); - // $('.alignRight', toolbar).click(function(){ applyToText('justifyright'); return false; }); - // $('.addURL', toolbar).click(function(){ addURL(); return false; }); - // $('.removeURL', toolbar).click(function(){ applyToText('unlink'); return false; }); - // if($.browser.msie) { - // $('.biggerText', toolbar).click(function(){ ieFontSize('increase'); return false; }); - // $('.smallerText', toolbar).click(function(){ ieFontSize('decrease'); return false; }); - // } else { - // $('.biggerText', toolbar).click(function(){ applyToText('increasefontsize'); return false; }); - // $('.smallerText', toolbar).click(function(){ applyToText('decreasefontsize'); return false; }); - // } - // $('.clean', toolbar).click(function(){ cleanText(); return false; }); + $('.alignLeft', toolbar).click(function(){ applyToText('justifyleft'); return false; }); + $('.alignCenter', toolbar).click(function(){ applyToText('justifycenter'); return false; }); + $('.alignRight', toolbar).click(function(){ applyToText('justifyright'); return false; }); + $('.addURL', toolbar).click(function(){ addURL(); return false; }); + $('.removeURL', toolbar).click(function(){ applyToText('unlink'); return false; }); + if($.browser.msie) { + $('.biggerText', toolbar).click(function(){ ieFontSize('increase'); return false; }); + $('.smallerText', toolbar).click(function(){ ieFontSize('decrease'); return false; }); + } else { + $('.biggerText', toolbar).click(function(){ applyToText('increasefontsize'); return false; }); + $('.smallerText', toolbar).click(function(){ applyToText('decreasefontsize'); return false; }); + } + $('.horizontalRule', toolbar).click(function(){ applyToText('inserthorizontalrule'); return false; }); $('.list', toolbar).click(function(){ applyToText('insertunorderedlist'); return false; }); + $('.clean', toolbar).click(function(){ cleanText(); return false; }); /* $('.addIMG', toolbar).click(function(){ addImage(); return false; }); $('.preview', toolbar).click(function(){ disableDesignMode(); return false; });