Created
April 21, 2015 12:10
-
-
Save innabelaya/904ab01666fd1a19d312 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
block : 'page', | |
title : 'Support IE8', | |
head : [ | |
{ | |
elem : 'conditional-comment', | |
condition : '> IE 8', | |
msieOnly : false, | |
content : { elem : 'css', url : '_simple.css' } // стили для всех браузеров, в т.ч. IE9+ | |
}, | |
{ | |
elem : 'conditional-comment', | |
condition : '<= IE 8', | |
content : { elem : 'css', url : '_simple.ie.css' } // стили для IE8 и ниже | |
} | |
], | |
scripts : [ | |
{ | |
elem : 'conditional-comment', | |
condition : '< IE 9', | |
content : { elem : 'js', url : '//yastatic.net/es5-shims/0.0.1/es5-shims.min.js' }, // Подключение es5-shim для IE8 и ниже | |
}, | |
{ elem : 'js', url : '_simple.js' } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment