forked from s79/OurJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.js
27 lines (27 loc) · 1.1 KB
/
dev.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* @fileOverview OurJS 开发版。
* @author [email protected]
* @version 20120213
*/
//==================================================[引入开发中的脚本文件]
//--------------------------------------------------[import]
(function() {
var scripts = [
'<script src="/framework/src/lang.js"></script>',
'<script src="/framework/src/browser.js"></script>',
'<script src="/framework/src/dom.js"></script>',
'<script src="/framework/src/component.js"></script>',
'<script src="/framework/src/animation.js"></script>',
'<script src="/framework/src/request.js"></script>',
'<script src="/framework/src/modularization.js"></script>',
'<script src="/framework/src/execute.js"></script>',
'<script src="/framework/src/plugins/sizzle.js"></script>'
];
if (!window.JSON) {
scripts.push('<script src="/framework/src/plugins/json2.js"></script>');
}
if (document.documentElement.currentStyle && !document.documentElement.currentStyle.minWidth) {
scripts.push('<script src="/framework/src/plugins/console.js"></script>');
}
document.write(scripts.join('\n'));
})();