Changeset 3418:f74c218a7b8e
- Timestamp:
- 11/25/16 11:47:01 (9 years ago)
- Branch:
- default
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r3305 r3418 56 56 find $(DC)/admin/js/*.js -exec ./build-tools/min-js.php \{\} \; 57 57 find $(DC)/admin/js/codemirror -name '*.js' -exec ./build-tools/min-js.php \{\} \; 58 find $(DC)/admin/js/ie7/*.js -exec ./build-tools/min-js.php \{\} \;59 58 find $(DC)/admin/js/jquery/*.js -exec ./build-tools/min-js.php \{\} \; 60 59 find $(DC)/admin/js/jsUpload/*.js -exec ./build-tools/min-js.php \{\} \; -
admin/_charte.php
r3408 r3418 24 24 <title>Bibliothèque de styles - Dotclear - 2.7</title> 25 25 <link rel="icon" type="image/png" href="images/favicon96-login.png" /> 26 <!--[if lt IE 9]>27 <script type="text/javascript" src="js/ie7/IE9.js"></script>28 <link rel="stylesheet" type="text/css" href="style/iesucks.css" />29 <![endif]-->30 26 <link rel="stylesheet" href="style/default.css" type="text/css" media="screen" /> 31 27 <?php -
admin/auth.php
r3358 r3418 291 291 292 292 <?php 293 echo dcPage::jsLoadIE7();294 293 echo dcPage::jsCommon(); 295 294 ?> -
inc/admin/lib.dc.page.php
r3408 r3418 159 159 160 160 161 self::jsLoadIE7().162 161 self::cssLoad('style/default.css'); 163 162 if (l10n::getTextDirection($GLOBALS['_lang']) == 'rtl') { … … 413 412 ' <meta name="GOOGLEBOT" content="NOSNIPPET" />'."\n". 414 413 415 self::jsLoadIE7().416 414 self::cssLoad('style/default.css'); 417 415 if (l10n::getTextDirection($GLOBALS['_lang']) == 'rtl') { … … 846 844 } 847 845 846 /** 847 @deprecated since version 2.11 848 */ 848 849 public static function jsLoadIE7() 849 850 { 850 return 851 '<!--[if lt IE 9]>'."\n". 852 self::jsLoad('js/ie7/IE9.js'). 853 self::cssLoad('style/iesucks.css'). 854 '<![endif]-->'."\n"; 851 return ''; 855 852 } 856 853 … … 891 888 '});'. 892 889 "\n//]]>\n". 893 "</script>\n". 894 '<!--[if lt IE 8]>'."\n". 895 self::jsLoad('js/ie7/ie7-hashchange.js'). 896 '<script type="text/javascript">'."\n". 897 "//<![CDATA[\n". 898 '$(window).hashchange();'. 899 "\n//]]>\n". 900 "</script>\n". 901 '<![endif]-->'."\n"; 890 "</script>\n"; 902 891 } 903 892 -
inc/dbschema/upgrade.php
r3407 r3418 623 623 'admin/js/tool-man/drag.js', 624 624 'admin/js/tool-man/dragsort.js', 625 'admin/js/tool-man/events.js' 625 'admin/js/tool-man/events.js', 626 'admin/js/ie7/IE7.js', 627 'admin/js/ie7/IE8.js', 628 'admin/js/ie7/IE9.js', 629 'admin/js/ie7/blank.gif', 630 'admin/js/ie7/ie7-hashchange.js', 631 'admin/js/ie7/ie7-recalc.js', 632 'admin/js/ie7/ie7-squish.js', 633 'admin/style/iesucks.css' 626 634 ); 627 635 $remfolders = array ( 628 636 'admin/style/modal', 629 637 'admin/js/tool-man', 638 'admin/js/ie7' 630 639 ); 631 640
Note: See TracChangeset
for help on using the changeset viewer.