diff options
author | Renato Botelho <garga@pfSense.org> | 2013-07-29 05:16:03 -0700 |
---|---|---|
committer | Renato Botelho <garga@pfSense.org> | 2013-07-29 05:16:03 -0700 |
commit | a33c38cf4b849340391da3ea0881cb9c403fcfa0 (patch) | |
tree | c08d5b667018efb0eeb1415cca2e3290a05f8051 /usr/local/www/themes | |
parent | d8d6e2387a4201de0297a10def6e627baca188dd (diff) | |
parent | 08a97fe0ae6d6c65c43299c0f66021935274c708 (diff) | |
download | pfsense-a33c38cf4b849340391da3ea0881cb9c403fcfa0.zip pfsense-a33c38cf4b849340391da3ea0881cb9c403fcfa0.tar.gz |
Merge pull request #739 from CharlieMarshall/pfsense_ng_fs-button-fix
better handling of widescreen theme
Diffstat (limited to 'usr/local/www/themes')
-rw-r--r-- | usr/local/www/themes/pfsense_ng_fs/loader.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/themes/pfsense_ng_fs/loader.js b/usr/local/www/themes/pfsense_ng_fs/loader.js index 293ad3e..44628da 100644 --- a/usr/local/www/themes/pfsense_ng_fs/loader.js +++ b/usr/local/www/themes/pfsense_ng_fs/loader.js @@ -21,10 +21,10 @@ if (version == '') { } if (browser == 'IE' && version < 7) { - document.write('<script type="text/javascript" src="/themes/pfsense_ng/javascript/ie7/ie7-standard-p.js"></scr'+'ipt>'); + document.write('<script type="text/javascript" src="/themes/pfsense_ng/javascript/ie7/ie7-standard-p.js"></script>'); } -document.write('<script type="text/javascript" src="/themes/pfsense_ng/javascript/niftyjsCode.js"></scr'+'ipt>'); +document.write('<script type="text/javascript" src="/themes/pfsense_ng/javascript/niftyjsCode.js"></script>'); /////////////////////////////////////////// // jQuery code for columns / widgets part 1 @@ -108,7 +108,7 @@ jQuery(document).ready(function () { /////////////////////////////////////////// jQuery('#col2').css("float","left"); - jQuery('<br/><br/><div><div id =\"addCol\" style=float:left><img src=\"./themes/pfsense_ng_fs/images/icons/icon_plus.gif\"/> Add column </div><div id =\"delCol\" style=float:left><img src=\"./themes/pfsense_ng_fs/images/icons/icon_x.gif\"/> Delete column</div><br/><br/></div> ').insertBefore('#niftyOutter'); + jQuery('<br/><br/><div><div id =\"addCol\" style=float:left><img src=\"./themes/pfsense_ng_fs/images/icons/icon_plus.gif\"/> Add column </div><div id =\"delCol\" style=float:left><img src=\"./themes/pfsense_ng_fs/images/icons/icon_x.gif\"/> Delete column</div><br/><br/></div> ').insertBefore('#niftyOutter.fakeClass'); // on click add a new column and change column widths jQuery('#addCol').click(function(){ |