提交 2eb01075 authored 作者: Seven Du's avatar Seven Du

Hope can fix on IE, not tested

上级 5454a95f
// var ie_console_alertFallback = true;
// var ie_console_divFallback = true;
if (typeof console === "undefined" || typeof console.log === "undefined") {
console = {};
if (typeof ie_console_divFallback != "undefined") {
console.log = function(msg) {
$('#ie_console_debug_div').append(msg);
$('#ie_console_debug_div').append("<br>");
}
} else if (typeof ie_console_alertFallback != "undefined" ) {
console.log = function(msg) {
alert(msg);
};
} else {
console.log = function() {};
}
}
...@@ -687,6 +687,7 @@ ...@@ -687,6 +687,7 @@
<!-- Le javascript <!-- Le javascript
================================================== --> ================================================== -->
<!-- Placed at the end of the document so the pages load faster --> <!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/ie-console.js"></script>
<script src="assets/js/jquery-1.9.1.min.js"></script> <script src="assets/js/jquery-1.9.1.min.js"></script>
<script src="assets/js/handlebars.js"></script> <script src="assets/js/handlebars.js"></script>
<script src="assets/js/ember-1.0.0-rc.1.js"></script> <script src="assets/js/ember-1.0.0-rc.1.js"></script>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论