wind.js 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362
  1. ///#source 1 1 /src/1.0.0/core.js
  2. /*! head.core - v1.0.2 */
  3. /*
  4. * HeadJS The only script in your <HEAD>
  5. * Author Tero Piirainen (tipiirai)
  6. * Maintainer Robert Hoffmann (itechnology)
  7. * License MIT / http://bit.ly/mit-license
  8. * WebSite http://headjs.com
  9. */
  10. (function (win, undefined) {
  11. "use strict";
  12. // gt, gte, lt, lte, eq breakpoints would have been more simple to write as ['gt','gte','lt','lte','eq']
  13. // but then we would have had to loop over the collection on each resize() event,
  14. // a simple object with a direct access to true/false is therefore much more efficient
  15. var doc = win.document,
  16. nav = win.navigator,
  17. loc = win.location,
  18. html = doc.documentElement,
  19. klass = [],
  20. conf = {
  21. screens: [240, 320, 480, 640, 768, 800, 1024, 1280, 1440, 1680, 1920],
  22. screensCss: {"gt": true, "gte": false, "lt": true, "lte": false, "eq": false},
  23. browsers: [
  24. {ie: {min: 6, max: 11}}
  25. //,{ chrome : { min: 8, max: 33 } }
  26. //,{ ff : { min: 3, max: 26 } }
  27. //,{ ios : { min: 3, max: 7 } }
  28. //,{ android: { min: 2, max: 4 } }
  29. //,{ webkit : { min: 9, max: 12 } }
  30. //,{ opera : { min: 9, max: 12 } }
  31. ],
  32. browserCss: {"gt": true, "gte": false, "lt": true, "lte": false, "eq": true},
  33. html5: true,
  34. page: "-page",
  35. section: "-section",
  36. head: "head"
  37. };
  38. if (win.head_conf) {
  39. for (var item in win.head_conf) {
  40. if (win.head_conf[item] !== undefined) {
  41. conf[item] = win.head_conf[item];
  42. }
  43. }
  44. }
  45. function pushClass(name) {
  46. klass[klass.length] = name;
  47. }
  48. function removeClass(name) {
  49. // need to test for both space and no space
  50. // https://github.com/headjs/headjs/issues/270
  51. // https://github.com/headjs/headjs/issues/226
  52. var re = new RegExp(" ?\\b" + name + "\\b");
  53. html.className = html.className.replace(re, "");
  54. }
  55. function each(arr, fn) {
  56. for (var i = 0, l = arr.length; i < l; i++) {
  57. fn.call(arr, arr[i], i);
  58. }
  59. }
  60. // API
  61. var api = win[conf.head] = function () {
  62. api.ready.apply(null, arguments);
  63. };
  64. api.feature = function (key, enabled, queue) {
  65. // internal: apply all classes
  66. if (!key) {
  67. html.className += " " + klass.join(" ");
  68. klass = [];
  69. return api;
  70. }
  71. if (Object.prototype.toString.call(enabled) === "[object Function]") {
  72. enabled = enabled.call();
  73. }
  74. pushClass((enabled ? "" : "no-") + key);
  75. api[key] = !!enabled;
  76. // apply class to HTML element
  77. if (!queue) {
  78. removeClass("no-" + key);
  79. removeClass(key);
  80. api.feature();
  81. }
  82. return api;
  83. };
  84. // no queue here, so we can remove any eventual pre-existing no-js class
  85. api.feature("js", true);
  86. // browser type & version
  87. var ua = nav.userAgent.toLowerCase(),
  88. mobile = /mobile|android|kindle|silk|midp|phone|(windows .+arm|touch)/.test(ua);
  89. // useful for enabling/disabling feature (we can consider a desktop navigator to have more cpu/gpu power)
  90. api.feature("mobile", mobile, true);
  91. api.feature("desktop", !mobile, true);
  92. // http://www.zytrax.com/tech/web/browser_ids.htm
  93. // http://www.zytrax.com/tech/web/mobile_ids.html
  94. ua = /(chrome|firefox)[ \/]([\w.]+)/.exec(ua) || // Chrome & Firefox
  95. /(iphone|ipad|ipod)(?:.*version)?[ \/]([\w.]+)/.exec(ua) || // Mobile IOS
  96. /(android)(?:.*version)?[ \/]([\w.]+)/.exec(ua) || // Mobile Webkit
  97. /(webkit|opera)(?:.*version)?[ \/]([\w.]+)/.exec(ua) || // Safari & Opera
  98. /(msie) ([\w.]+)/.exec(ua) ||
  99. /(trident).+rv:(\w.)+/.exec(ua) || [];
  100. var browser = ua[1],
  101. version = parseFloat(ua[2]);
  102. switch (browser) {
  103. case "msie":
  104. case "trident":
  105. browser = "ie";
  106. version = doc.documentMode || version;
  107. break;
  108. case "firefox":
  109. browser = "ff";
  110. break;
  111. case "ipod":
  112. case "ipad":
  113. case "iphone":
  114. browser = "ios";
  115. break;
  116. case "webkit":
  117. browser = "safari";
  118. break;
  119. }
  120. // Browser vendor and version
  121. api.browser = {
  122. name: browser,
  123. version: version
  124. };
  125. api.browser[browser] = true;
  126. for (var i = 0, l = conf.browsers.length; i < l; i++) {
  127. for (var key in conf.browsers[i]) {
  128. if (browser === key) {
  129. pushClass(key);
  130. var min = conf.browsers[i][key].min;
  131. var max = conf.browsers[i][key].max;
  132. for (var v = min; v <= max; v++) {
  133. if (version > v) {
  134. if (conf.browserCss.gt) {
  135. pushClass("gt-" + key + v);
  136. }
  137. if (conf.browserCss.gte) {
  138. pushClass("gte-" + key + v);
  139. }
  140. } else if (version < v) {
  141. if (conf.browserCss.lt) {
  142. pushClass("lt-" + key + v);
  143. }
  144. if (conf.browserCss.lte) {
  145. pushClass("lte-" + key + v);
  146. }
  147. } else if (version === v) {
  148. if (conf.browserCss.lte) {
  149. pushClass("lte-" + key + v);
  150. }
  151. if (conf.browserCss.eq) {
  152. pushClass("eq-" + key + v);
  153. }
  154. if (conf.browserCss.gte) {
  155. pushClass("gte-" + key + v);
  156. }
  157. }
  158. }
  159. } else {
  160. pushClass("no-" + key);
  161. }
  162. }
  163. }
  164. pushClass(browser);
  165. pushClass(browser + parseInt(version, 10));
  166. // IE lt9 specific
  167. if (conf.html5 && browser === "ie" && version < 9) {
  168. // HTML5 support : you still need to add html5 css initialization styles to your site
  169. // See: assets/html5.css
  170. each("abbr|article|aside|audio|canvas|details|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|progress|section|summary|time|video".split("|"), function (el) {
  171. doc.createElement(el);
  172. });
  173. }
  174. // CSS "router"
  175. each(loc.pathname.split("/"), function (el, i) {
  176. if (this.length > 2 && this[i + 1] !== undefined) {
  177. if (i) {
  178. pushClass(this.slice(i, i + 1).join("-").toLowerCase() + conf.section);
  179. }
  180. } else {
  181. // pageId
  182. var id = el || "index", index = id.indexOf(".");
  183. if (index > 0) {
  184. id = id.substring(0, index);
  185. }
  186. html.id = id.toLowerCase() + conf.page;
  187. // on root?
  188. if (!i) {
  189. pushClass("root" + conf.section);
  190. }
  191. }
  192. });
  193. // basic screen info
  194. api.screen = {
  195. height: win.screen.height,
  196. width: win.screen.width
  197. };
  198. // viewport resolutions: w-100, lt-480, lt-1024 ...
  199. function screenSize() {
  200. // remove earlier sizes
  201. html.className = html.className.replace(/ (w-|eq-|gt-|gte-|lt-|lte-|portrait|no-portrait|landscape|no-landscape)\d+/g, "");
  202. // Viewport width
  203. var iw = win.innerWidth || html.clientWidth,
  204. ow = win.outerWidth || win.screen.width;
  205. api.screen.innerWidth = iw;
  206. api.screen.outerWidth = ow;
  207. // for debugging purposes, not really useful for anything else
  208. pushClass("w-" + iw);
  209. each(conf.screens, function (width) {
  210. if (iw > width) {
  211. if (conf.screensCss.gt) {
  212. pushClass("gt-" + width);
  213. }
  214. if (conf.screensCss.gte) {
  215. pushClass("gte-" + width);
  216. }
  217. } else if (iw < width) {
  218. if (conf.screensCss.lt) {
  219. pushClass("lt-" + width);
  220. }
  221. if (conf.screensCss.lte) {
  222. pushClass("lte-" + width);
  223. }
  224. } else if (iw === width) {
  225. if (conf.screensCss.lte) {
  226. pushClass("lte-" + width);
  227. }
  228. if (conf.screensCss.eq) {
  229. pushClass("e-q" + width);
  230. }
  231. if (conf.screensCss.gte) {
  232. pushClass("gte-" + width);
  233. }
  234. }
  235. });
  236. // Viewport height
  237. var ih = win.innerHeight || html.clientHeight,
  238. oh = win.outerHeight || win.screen.height;
  239. api.screen.innerHeight = ih;
  240. api.screen.outerHeight = oh;
  241. // no need for onChange event to detect this
  242. api.feature("portrait", (ih > iw));
  243. api.feature("landscape", (ih < iw));
  244. }
  245. screenSize();
  246. // Throttle navigators from triggering too many resize events
  247. var resizeId = 0;
  248. function onResize() {
  249. win.clearTimeout(resizeId);
  250. resizeId = win.setTimeout(screenSize, 50);
  251. }
  252. // Manually attach, as to not overwrite existing handler
  253. if (win.addEventListener) {
  254. win.addEventListener("resize", onResize, false);
  255. } else {
  256. // IE8 and less
  257. win.attachEvent("onresize", onResize);
  258. }
  259. }(window));
  260. ///#source 1 1 /src/1.0.0/css3.js
  261. /*! head.css3 - v1.0.0 */
  262. /*
  263. * HeadJS The only script in your <HEAD>
  264. * Author Tero Piirainen (tipiirai)
  265. * Maintainer Robert Hoffmann (itechnology)
  266. * License MIT / http://bit.ly/mit-license
  267. * WebSite http://headjs.com
  268. */
  269. (function (win, undefined) {
  270. "use strict";
  271. var doc = win.document,
  272. /*
  273. To add a new test:
  274. head.feature("video", function() {
  275. var tag = document.createElement('video');
  276. return !!tag.canPlayType;
  277. });
  278. Good place to grab more tests
  279. https://github.com/Modernizr/Modernizr/blob/master/modernizr.js
  280. */
  281. /* CSS modernizer */
  282. el = doc.createElement("i"),
  283. style = el.style,
  284. prefs = " -o- -moz- -ms- -webkit- -khtml- ".split(" "),
  285. domPrefs = "Webkit Moz O ms Khtml".split(" "),
  286. headVar = win.head_conf && win.head_conf.head || "head",
  287. api = win[headVar];
  288. // Thanks Paul Irish!
  289. function testProps(props) {
  290. for (var i in props) {
  291. if (style[props[i]] !== undefined) {
  292. return true;
  293. }
  294. }
  295. return false;
  296. }
  297. function testAll(prop) {
  298. var camel = prop.charAt(0).toUpperCase() + prop.substr(1),
  299. props = (prop + " " + domPrefs.join(camel + " ") + camel).split(" ");
  300. return !!testProps(props);
  301. }
  302. var tests = {
  303. // should we seperate linear/radial ?
  304. // seems like some browsers need a test for prefix http://caniuse.com/#feat=css-gradients
  305. gradient: function () {
  306. var s1 = "background-image:",
  307. s2 = "gradient(linear,left top,right bottom,from(#9f9),to(#fff));",
  308. s3 = "linear-gradient(left top,#eee,#fff);";
  309. style.cssText = (s1 + prefs.join(s2 + s1) + prefs.join(s3 + s1)).slice(0, -s1.length);
  310. return !!style.backgroundImage;
  311. },
  312. rgba: function () {
  313. style.cssText = "background-color:rgba(0,0,0,0.5)";
  314. return !!style.backgroundColor;
  315. },
  316. opacity: function () {
  317. return el.style.opacity === "";
  318. },
  319. textshadow: function () {
  320. return style.textShadow === "";
  321. },
  322. multiplebgs: function () {
  323. style.cssText = "background:url(https://),url(https://),red url(https://)";
  324. // If the UA supports multiple backgrounds, there should be three occurrences
  325. // of the string "url(" in the return value for elemStyle.background
  326. var result = (style.background || "").match(/url/g);
  327. return Object.prototype.toString.call(result) === "[object Array]" && result.length === 3;
  328. },
  329. boxshadow: function () {
  330. return testAll("boxShadow");
  331. },
  332. borderimage: function () {
  333. return testAll("borderImage");
  334. },
  335. borderradius: function () {
  336. return testAll("borderRadius");
  337. },
  338. cssreflections: function () {
  339. return testAll("boxReflect");
  340. },
  341. csstransforms: function () {
  342. return testAll("transform");
  343. },
  344. csstransitions: function () {
  345. return testAll("transition");
  346. },
  347. touch: function () {
  348. return "ontouchstart" in win;
  349. },
  350. retina: function () {
  351. return (win.devicePixelRatio > 1);
  352. },
  353. /*
  354. font-face support. Uses browser sniffing but is synchronous.
  355. http://paulirish.com/2009/font-face-feature-detection/
  356. */
  357. fontface: function () {
  358. var browser = api.browser.name, version = api.browser.version;
  359. switch (browser) {
  360. case "ie":
  361. return version >= 9;
  362. case "chrome":
  363. return version >= 13;
  364. case "ff":
  365. return version >= 6;
  366. case "ios":
  367. return version >= 5;
  368. case "android":
  369. return false;
  370. case "webkit":
  371. return version >= 5.1;
  372. case "opera":
  373. return version >= 10;
  374. default:
  375. return false;
  376. }
  377. }
  378. };
  379. // queue features
  380. for (var key in tests) {
  381. if (tests[key]) {
  382. api.feature(key, tests[key].call(), true);
  383. }
  384. }
  385. // enable features at once
  386. api.feature();
  387. }(window));
  388. ///#source 1 1 /src/1.0.0/load.js
  389. /*! head.load - v1.0.3 */
  390. /*
  391. * HeadJS The only script in your <HEAD>
  392. * Author Tero Piirainen (tipiirai)
  393. * Maintainer Robert Hoffmann (itechnology)
  394. * License MIT / http://bit.ly/mit-license
  395. * WebSite http://headjs.com
  396. */
  397. (function (win, undefined) {
  398. "use strict";
  399. //#region variables
  400. var doc = win.document,
  401. domWaiters = [],
  402. handlers = {}, // user functions waiting for events
  403. assets = {}, // loadable items in various states
  404. isAsync = "async" in doc.createElement("script") || "MozAppearance" in doc.documentElement.style || win.opera,
  405. isDomReady,
  406. /*** public API ***/
  407. headVar = win.head_conf && win.head_conf.head || "Wind",
  408. api = win[headVar] = (win[headVar] || function () {
  409. api.ready.apply(null, arguments);
  410. }),
  411. // states
  412. PRELOADING = 1,
  413. PRELOADED = 2,
  414. LOADING = 3,
  415. LOADED = 4;
  416. //#endregion
  417. //#region PRIVATE functions
  418. //#region Helper functions
  419. function noop() {
  420. // does nothing
  421. }
  422. function each(arr, callback) {
  423. if (!arr) {
  424. return;
  425. }
  426. // arguments special type
  427. if (typeof arr === "object") {
  428. arr = [].slice.call(arr);
  429. }
  430. // do the job
  431. for (var i = 0, l = arr.length; i < l; i++) {
  432. callback.call(arr, arr[i], i);
  433. }
  434. }
  435. /* A must read: http://bonsaiden.github.com/JavaScript-Garden
  436. ************************************************************/
  437. function is(type, obj) {
  438. var clas = Object.prototype.toString.call(obj).slice(8, -1);
  439. return obj !== undefined && obj !== null && clas === type;
  440. }
  441. function isFunction(item) {
  442. return is("Function", item);
  443. }
  444. function isArray(item) {
  445. return is("Array", item);
  446. }
  447. function toLabel(url) {
  448. ///<summary>Converts a url to a file label</summary>
  449. var items = url.split("/"),
  450. name = items[items.length - 1],
  451. i = name.indexOf("?");
  452. return i !== -1 ? name.substring(0, i) : name;
  453. }
  454. // INFO: this look like a "im triggering callbacks all over the place, but only wanna run it one time function" ..should try to make everything work without it if possible
  455. // INFO: Even better. Look into promises/defered's like jQuery is doing
  456. function one(callback) {
  457. ///<summary>Execute a callback only once</summary>
  458. callback = callback || noop;
  459. if (callback._done) {
  460. return;
  461. }
  462. callback();
  463. callback._done = 1;
  464. }
  465. //#endregion
  466. function conditional(test, success, failure, callback) {
  467. ///<summary>
  468. /// INFO: use cases:
  469. /// head.test(condition, null , "file.NOk" , callback);
  470. /// head.test(condition, "fileOk.js", null , callback);
  471. /// head.test(condition, "fileOk.js", "file.NOk" , callback);
  472. /// head.test(condition, "fileOk.js", ["file.NOk", "file.NOk"], callback);
  473. /// head.test({
  474. /// test : condition,
  475. /// success : [{ label1: "file1Ok.js" }, { label2: "file2Ok.js" }],
  476. /// failure : [{ label1: "file1NOk.js" }, { label2: "file2NOk.js" }],
  477. /// callback: callback
  478. /// );
  479. /// head.test({
  480. /// test : condition,
  481. /// success : ["file1Ok.js" , "file2Ok.js"],
  482. /// failure : ["file1NOk.js", "file2NOk.js"],
  483. /// callback: callback
  484. /// );
  485. ///</summary>
  486. var obj = (typeof test === "object") ? test : {
  487. test: test,
  488. success: !!success ? isArray(success) ? success : [success] : false,
  489. failure: !!failure ? isArray(failure) ? failure : [failure] : false,
  490. callback: callback || noop
  491. };
  492. // Test Passed ?
  493. var passed = !!obj.test;
  494. // Do we have a success case
  495. if (passed && !!obj.success) {
  496. obj.success.push(obj.callback);
  497. api.load.apply(null, obj.success);
  498. }
  499. // Do we have a fail case
  500. else if (!passed && !!obj.failure) {
  501. obj.failure.push(obj.callback);
  502. api.load.apply(null, obj.failure);
  503. }
  504. else {
  505. callback();
  506. }
  507. return api;
  508. }
  509. function getAsset(item) {
  510. ///<summary>
  511. /// Assets are in the form of
  512. /// {
  513. /// name : label,
  514. /// url : url,
  515. /// state: state
  516. /// }
  517. ///</summary>
  518. var asset = {};
  519. if (typeof item === "object") {
  520. for (var label in item) {
  521. if (!!item[label]) {
  522. asset = {
  523. name: label,
  524. url: item[label]
  525. };
  526. }
  527. }
  528. }
  529. else {
  530. asset = {
  531. name: toLabel(item),
  532. url: item
  533. };
  534. }
  535. // is the item already existant
  536. var existing = assets[asset.name];
  537. if (existing && existing.url === asset.url) {
  538. return existing;
  539. }
  540. assets[asset.name] = asset;
  541. return asset;
  542. }
  543. function allLoaded(items) {
  544. items = items || assets;
  545. for (var name in items) {
  546. if (items.hasOwnProperty(name) && items[name].state !== LOADED) {
  547. return false;
  548. }
  549. }
  550. return true;
  551. }
  552. function onPreload(asset) {
  553. asset.state = PRELOADED;
  554. each(asset.onpreload, function (afterPreload) {
  555. afterPreload.call();
  556. });
  557. }
  558. function preLoad(asset, callback) {
  559. if (asset.state === undefined) {
  560. asset.state = PRELOADING;
  561. asset.onpreload = [];
  562. loadAsset({url: asset.url, type: "cache"}, function () {
  563. onPreload(asset);
  564. });
  565. }
  566. }
  567. function apiLoadHack() {
  568. /// <summary>preload with text/cache hack
  569. ///
  570. /// head.load("http://domain.com/file.js","http://domain.com/file.js", callBack)
  571. /// head.load(["http://domain.com/file.js","http://domain.com/file.js"], callBack)
  572. /// head.load({ label1: "http://domain.com/file.js" }, { label2: "http://domain.com/file.js" }, callBack)
  573. /// head.load([{ label1: "http://domain.com/file.js" }, { label2: "http://domain.com/file.js" }], callBack)
  574. /// </summary>
  575. var args = arguments,
  576. callback = args[args.length - 1],
  577. rest = [].slice.call(args, 1),
  578. next = rest[0];
  579. if (!isFunction(callback)) {
  580. callback = null;
  581. }
  582. // if array, repush as args
  583. if (isArray(args[0])) {
  584. args[0].push(callback);
  585. api.load.apply(null, args[0]);
  586. return api;
  587. }
  588. // multiple arguments
  589. if (!!next) {
  590. /* Preload with text/cache hack (not good!)
  591. * http://blog.getify.com/on-script-loaders/
  592. * http://www.nczonline.net/blog/2010/12/21/thoughts-on-script-loaders/
  593. * If caching is not configured correctly on the server, then items could load twice !
  594. *************************************************************************************/
  595. each(rest, function (item) {
  596. // item is not a callback or empty string
  597. if (!isFunction(item) && !!item) {
  598. preLoad(getAsset(item));
  599. }
  600. });
  601. // execute
  602. load(getAsset(args[0]), isFunction(next) ? next : function () {
  603. api.load.apply(null, rest);
  604. });
  605. }
  606. else {
  607. // single item
  608. load(getAsset(args[0]));
  609. }
  610. return api;
  611. }
  612. function apiLoadAsync() {
  613. ///<summary>
  614. /// simply load and let browser take care of ordering
  615. ///
  616. /// head.load("http://domain.com/file.js","http://domain.com/file.js", callBack)
  617. /// head.load(["http://domain.com/file.js","http://domain.com/file.js"], callBack)
  618. /// head.load({ label1: "http://domain.com/file.js" }, { label2: "http://domain.com/file.js" }, callBack)
  619. /// head.load([{ label1: "http://domain.com/file.js" }, { label2: "http://domain.com/file.js" }], callBack)
  620. ///</summary>
  621. var args = arguments,
  622. callback = args[args.length - 1],
  623. items = {};
  624. if (!isFunction(callback)) {
  625. callback = null;
  626. }
  627. // if array, repush as args
  628. if (isArray(args[0])) {
  629. args[0].push(callback);
  630. api.load.apply(null, args[0]);
  631. return api;
  632. }
  633. // JRH 262#issuecomment-26288601
  634. // First populate the items array.
  635. // When allLoaded is called, all items will be populated.
  636. // Issue when lazy loaded, the callback can execute early.
  637. each(args, function (item, i) {
  638. if (item !== callback) {
  639. item = getAsset(item);
  640. items[item.name] = item;
  641. }
  642. });
  643. each(args, function (item, i) {
  644. if (item !== callback) {
  645. item = getAsset(item);
  646. load(item, function () {
  647. if (allLoaded(items)) {
  648. one(callback);
  649. }
  650. });
  651. }
  652. });
  653. return api;
  654. }
  655. function load(asset, callback) {
  656. ///<summary>Used with normal loading logic</summary>
  657. callback = callback || noop;
  658. if (asset.state === LOADED) {
  659. callback();
  660. return;
  661. }
  662. // INFO: why would we trigger a ready event when its not really loaded yet ?
  663. if (asset.state === LOADING) {
  664. api.ready(asset.name, callback);
  665. return;
  666. }
  667. if (asset.state === PRELOADING) {
  668. asset.onpreload.push(function () {
  669. load(asset, callback);
  670. });
  671. return;
  672. }
  673. asset.state = LOADING;
  674. loadAsset(asset, function () {
  675. asset.state = LOADED;
  676. callback();
  677. // handlers for this asset
  678. each(handlers[asset.name], function (fn) {
  679. one(fn);
  680. });
  681. // dom is ready & no assets are queued for loading
  682. // INFO: shouldn't we be doing the same test above ?
  683. if (isDomReady && allLoaded()) {
  684. each(handlers.ALL, function (fn) {
  685. one(fn);
  686. });
  687. }
  688. });
  689. }
  690. function getExtension(url) {
  691. url = url || "";
  692. var items = url.split("?")[0].split(".");
  693. return items[items.length - 1].toLowerCase();
  694. }
  695. /* Parts inspired from: https://github.com/cujojs/curl
  696. ******************************************************/
  697. function loadAsset(asset, callback) {
  698. callback = callback || noop;
  699. function error(event) {
  700. event = event || win.event;
  701. // release event listeners
  702. ele.onload = ele.onreadystatechange = ele.onerror = null;
  703. // do callback
  704. callback();
  705. // need some more detailed error handling here
  706. }
  707. function process(event) {
  708. event = event || win.event;
  709. // IE 7/8 (2 events on 1st load)
  710. // 1) event.type = readystatechange, s.readyState = loading
  711. // 2) event.type = readystatechange, s.readyState = loaded
  712. // IE 7/8 (1 event on reload)
  713. // 1) event.type = readystatechange, s.readyState = complete
  714. // event.type === 'readystatechange' && /loaded|complete/.test(s.readyState)
  715. // IE 9 (3 events on 1st load)
  716. // 1) event.type = readystatechange, s.readyState = loading
  717. // 2) event.type = readystatechange, s.readyState = loaded
  718. // 3) event.type = load , s.readyState = loaded
  719. // IE 9 (2 events on reload)
  720. // 1) event.type = readystatechange, s.readyState = complete
  721. // 2) event.type = load , s.readyState = complete
  722. // event.type === 'load' && /loaded|complete/.test(s.readyState)
  723. // event.type === 'readystatechange' && /loaded|complete/.test(s.readyState)
  724. // IE 10 (3 events on 1st load)
  725. // 1) event.type = readystatechange, s.readyState = loading
  726. // 2) event.type = load , s.readyState = complete
  727. // 3) event.type = readystatechange, s.readyState = loaded
  728. // IE 10 (3 events on reload)
  729. // 1) event.type = readystatechange, s.readyState = loaded
  730. // 2) event.type = load , s.readyState = complete
  731. // 3) event.type = readystatechange, s.readyState = complete
  732. // event.type === 'load' && /loaded|complete/.test(s.readyState)
  733. // event.type === 'readystatechange' && /complete/.test(s.readyState)
  734. // Other Browsers g7h 51k i1j g71 h(1 event on 1st load)
  735. // 1) event.type = load, s.readyState = undefined
  736. // Other Browsers (1 event on reload)
  737. // 1) event.type = load, s.readyState = undefined
  738. // event.type == 'load' && s.readyState = undefined
  739. // !doc.documentMode is for IE6/7, IE8+ have documentMode
  740. if (event.type === "load" || (/loaded|complete/.test(ele.readyState) && (!doc.documentMode || doc.documentMode < 9))) {
  741. // remove timeouts
  742. win.clearTimeout(asset.errorTimeout);
  743. win.clearTimeout(asset.cssTimeout);
  744. // release event listeners
  745. ele.onload = ele.onreadystatechange = ele.onerror = null;
  746. // do callback
  747. callback();
  748. }
  749. }
  750. function isCssLoaded() {
  751. // should we test again ? 20 retries = 5secs ..after that, the callback will be triggered by the error handler at 7secs
  752. if (asset.state !== LOADED && asset.cssRetries <= 20) {
  753. // loop through stylesheets
  754. for (var i = 0, l = doc.styleSheets.length; i < l; i++) {
  755. // do we have a match ?
  756. // we need to tests agains ele.href and not asset.url, because a local file will be assigned the full http path on a link element
  757. if (doc.styleSheets[i].href === ele.href) {
  758. process({"type": "load"});
  759. return;
  760. }
  761. }
  762. // increment & try again
  763. asset.cssRetries++;
  764. asset.cssTimeout = win.setTimeout(isCssLoaded, 250);
  765. }
  766. }
  767. var ele;
  768. var ext = getExtension(asset.url);
  769. if (ext === "css") {
  770. ele = doc.createElement("link");
  771. ele.type = "text/" + (asset.type || "css");
  772. ele.rel = "stylesheet";
  773. ele.href = asset.url;
  774. /* onload supported for CSS on unsupported browsers
  775. * Safari windows 5.1.7, FF < 10
  776. */
  777. // Set counter to zero
  778. asset.cssRetries = 0;
  779. asset.cssTimeout = win.setTimeout(isCssLoaded, 500);
  780. }
  781. else {
  782. ele = doc.createElement("script");
  783. ele.type = "text/" + (asset.type || "javascript");
  784. ele.src = asset.url;
  785. }
  786. ele.onload = ele.onreadystatechange = process;
  787. ele.onerror = error;
  788. /* Good read, but doesn't give much hope !
  789. * http://blog.getify.com/on-script-loaders/
  790. * http://www.nczonline.net/blog/2010/12/21/thoughts-on-script-loaders/
  791. * https://hacks.mozilla.org/2009/06/defer/
  792. */
  793. // ASYNC: load in parallel and execute as soon as possible
  794. ele.async = false;
  795. // DEFER: load in parallel but maintain execution order
  796. ele.defer = false;
  797. // timout for asset loading
  798. asset.errorTimeout = win.setTimeout(function () {
  799. error({type: "timeout"});
  800. }, 7e3);
  801. // use insertBefore to keep IE from throwing Operation Aborted (thx Bryan Forbes!)
  802. var head = doc.head || doc.getElementsByTagName("head")[0];
  803. // but insert at end of head, because otherwise if it is a stylesheet, it will not override values
  804. head.insertBefore(ele, head.lastChild);
  805. }
  806. /* Parts inspired from: https://github.com/jrburke/requirejs
  807. ************************************************************/
  808. function init() {
  809. var items = doc.getElementsByTagName("script");
  810. // look for a script with a data-head-init attribute
  811. for (var i = 0, l = items.length; i < l; i++) {
  812. var dataMain = items[i].getAttribute("data-headjs-load");
  813. if (!!dataMain) {
  814. api.load(dataMain);
  815. return;
  816. }
  817. }
  818. }
  819. function ready(key, callback) {
  820. ///<summary>
  821. /// INFO: use cases:
  822. /// head.ready(callBack);
  823. /// head.ready(document , callBack);
  824. /// head.ready("file.js", callBack);
  825. /// head.ready("label" , callBack);
  826. /// head.ready(["label1", "label2"], callback);
  827. ///</summary>
  828. // DOM ready check: head.ready(document, function() { });
  829. if (key === doc) {
  830. if (isDomReady) {
  831. one(callback);
  832. }
  833. else {
  834. domWaiters.push(callback);
  835. }
  836. return api;
  837. }
  838. // shift arguments
  839. if (isFunction(key)) {
  840. callback = key;
  841. key = "ALL"; // holds all callbacks that where added without labels: ready(callBack)
  842. }
  843. // queue all items from key and return. The callback will be executed if all items from key are already loaded.
  844. if (isArray(key)) {
  845. var items = {};
  846. each(key, function (item) {
  847. items[item] = assets[item];
  848. api.ready(item, function () {
  849. if (allLoaded(items)) {
  850. one(callback);
  851. }
  852. });
  853. });
  854. return api;
  855. }
  856. // make sure arguments are sane
  857. if (typeof key !== "string" || !isFunction(callback)) {
  858. return api;
  859. }
  860. // this can also be called when we trigger events based on filenames & labels
  861. var asset = assets[key];
  862. // item already loaded --> execute and return
  863. if (asset && asset.state === LOADED || key === "ALL" && allLoaded() && isDomReady) {
  864. one(callback);
  865. return api;
  866. }
  867. var arr = handlers[key];
  868. if (!arr) {
  869. arr = handlers[key] = [callback];
  870. }
  871. else {
  872. arr.push(callback);
  873. }
  874. return api;
  875. }
  876. /* Mix of stuff from jQuery & IEContentLoaded
  877. * http://dev.w3.org/html5/spec/the-end.html#the-end
  878. ***************************************************/
  879. function domReady() {
  880. // Make sure body exists, at least, in case IE gets a little overzealous (jQuery ticket #5443).
  881. if (!doc.body) {
  882. // let's not get nasty by setting a timeout too small.. (loop mania guaranteed if assets are queued)
  883. win.clearTimeout(api.readyTimeout);
  884. api.readyTimeout = win.setTimeout(domReady, 50);
  885. return;
  886. }
  887. if (!isDomReady) {
  888. isDomReady = true;
  889. init();
  890. each(domWaiters, function (fn) {
  891. one(fn);
  892. });
  893. }
  894. }
  895. function domContentLoaded() {
  896. // W3C
  897. if (doc.addEventListener) {
  898. doc.removeEventListener("DOMContentLoaded", domContentLoaded, false);
  899. domReady();
  900. }
  901. // IE
  902. else if (doc.readyState === "complete") {
  903. // we're here because readyState === "complete" in oldIE
  904. // which is good enough for us to call the dom ready!
  905. doc.detachEvent("onreadystatechange", domContentLoaded);
  906. domReady();
  907. }
  908. }
  909. // Catch cases where ready() is called after the browser event has already occurred.
  910. // we once tried to use readyState "interactive" here, but it caused issues like the one
  911. // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15
  912. if (doc.readyState === "complete") {
  913. domReady();
  914. }
  915. // W3C
  916. else if (doc.addEventListener) {
  917. doc.addEventListener("DOMContentLoaded", domContentLoaded, false);
  918. // A fallback to window.onload, that will always work
  919. win.addEventListener("load", domReady, false);
  920. }
  921. // IE
  922. else {
  923. // Ensure firing before onload, maybe late but safe also for iframes
  924. doc.attachEvent("onreadystatechange", domContentLoaded);
  925. // A fallback to window.onload, that will always work
  926. win.attachEvent("onload", domReady);
  927. // If IE and not a frame
  928. // continually check to see if the document is ready
  929. var top = false;
  930. try {
  931. top = !win.frameElement && doc.documentElement;
  932. } catch (e) {
  933. }
  934. if (top && top.doScroll) {
  935. (function doScrollCheck() {
  936. if (!isDomReady) {
  937. try {
  938. // Use the trick by Diego Perini
  939. // http://javascript.nwbox.com/IEContentLoaded/
  940. top.doScroll("left");
  941. } catch (error) {
  942. // let's not get nasty by setting a timeout too small.. (loop mania guaranteed if assets are queued)
  943. win.clearTimeout(api.readyTimeout);
  944. api.readyTimeout = win.setTimeout(doScrollCheck, 50);
  945. return;
  946. }
  947. // and execute any waiting functions
  948. domReady();
  949. }
  950. }());
  951. }
  952. }
  953. //#endregion
  954. //#region Public Exports
  955. // INFO: determine which method to use for loading
  956. api.load = api.js = isAsync ? apiLoadAsync : apiLoadHack;
  957. api.test = conditional;
  958. api.ready = ready;
  959. //#endregion
  960. //#region INIT
  961. // perform this when DOM is ready
  962. api.ready(doc, function () {
  963. if (allLoaded()) {
  964. each(handlers.ALL, function (callback) {
  965. one(callback);
  966. });
  967. }
  968. if (api.feature) {
  969. api.feature("domloaded", true);
  970. }
  971. });
  972. //#endregion
  973. }(window));
  974. /*********Wind JS*********/
  975. /*
  976. * PHPWind JS core
  977. * @Copyright : Copyright 2011, phpwind.com
  978. * @Descript : PHPWind核心JS
  979. * @Author : chaoren1641@gmail.com
  980. * @Thanks : head.js (http://headjs.com)
  981. * $Id: wind.js 21971 2012-12-17 12:11:36Z hao.lin $g7h51ki1jg71h :
  982. */
  983. /*
  984. * 防止浏览器不支持console报错
  985. */
  986. if (!window.console) {
  987. window.console = {};
  988. var funs = ["profiles", "memory", "_commandLineAPI", "debug", "error", "info", "log", "warn", "dir", "dirxml", "trace", "assert", "count", "markTimeline", "profile", "profileEnd", "time", "timeEnd", "timeStamp", "group", "groupCollapsed", "groupEnd"];
  989. for (var i = 0; i < funs.length; i++) {
  990. console[funs[i]] = function () {
  991. };
  992. }
  993. }
  994. /*
  995. *解决ie6下不支持背景缓存
  996. */
  997. Wind.ready(function () {
  998. if (!+'\v1' && !('maxHeight' in document.body.style)) {
  999. try {
  1000. document.execCommand("BackgroundImageCache", false, true);
  1001. } catch (e) {
  1002. }
  1003. }
  1004. });
  1005. /*
  1006. *wind core
  1007. */
  1008. (function (win) {
  1009. var root = win.GV.WEB_ROOT + win.GV.JS_ROOT || location.origin + '/public/js/', //在wind.js加载之前定义GV.JS_ROOT
  1010. ver = '',
  1011. //定义常用JS组件别名,使用别名加载
  1012. alias = {
  1013. datePicker: 'datePicker/datePicker',
  1014. jquery: 'jquery',
  1015. colorPicker: 'colorPicker/colorPicker',
  1016. tabs: 'tabs/tabs',
  1017. swfobject: 'swfobject',
  1018. imgready: 'imgready',
  1019. //jquery util plugs
  1020. ajaxForm: 'ajaxForm',
  1021. cookie: 'cookie',
  1022. treeview: 'treeview',
  1023. treeTable: 'treeTable/treeTable',
  1024. draggable: 'draggable',
  1025. validate: 'jquery.validate/jquery.validate',
  1026. 'validate-extends': 'jquery.validate/additional-methods',
  1027. artDialog: 'artDialog/artDialog',
  1028. iframeTools: 'artDialog/iframeTools',
  1029. xd: 'xd',//Iframe跨域通信
  1030. noty: 'noty/noty-2.4.1',
  1031. noty3: 'noty3/noty.min',
  1032. jcrop: 'jcrop/js/jcrop',
  1033. ajaxfileupload: 'ajaxfileupload',
  1034. layer: 'layer/layer',
  1035. plupload: 'plupload/plupload.full.min',
  1036. echarts: 'echarts/echarts.min',
  1037. viewer: 'viewer/viewer',
  1038. colorpicker:'colorpicker/js/colorpicker',
  1039. mousewheel: 'jquery.mousewheel/jquery.mousewheel.min',
  1040. bootstrapDatetimePicker: 'bootstrap-datetimepicker/js/bootstrap-datetimepicker',
  1041. dragula: 'dragula/dragula.min',
  1042. imagesloaded: 'masonry/imagesloaded.pkgd.min',
  1043. masonry: 'masonry/masonry.pkgd.min',
  1044. masonry3: 'masonry/masonry-3.3.2.pkgd',
  1045. ueditor:'ueditor/ueditor.all.min'
  1046. },
  1047. //CSS路径
  1048. alias_css = {
  1049. colorPicker: 'colorPicker/style',
  1050. artDialog: 'artDialog/skins/default',
  1051. datePicker: 'datePicker/style',
  1052. treeTable: 'treeTable/treeTable',
  1053. jcrop: 'jcrop/css/jquery.Jcrop.min',
  1054. layer: 'layer/skin/default/layer',
  1055. viewer: 'viewer/viewer',
  1056. noty3: 'noty3/noty',
  1057. colorpicker: 'colorpicker/css/colorpicker',
  1058. animate: 'animate/animate',
  1059. bootstrapDatetimePicker: 'bootstrap-datetimepicker/css/bootstrap-datetimepicker',
  1060. dragula: 'dragula/dragula.min',
  1061. ueditor:'ueditor/themes/default/css/ueditor'
  1062. };
  1063. //add suffix and version
  1064. for (var i in alias) {
  1065. if (alias.hasOwnProperty(i)) {
  1066. alias[i] = root + alias[i] + '.js?v=' + ver;
  1067. }
  1068. }
  1069. for (var i in alias_css) {
  1070. if (alias_css.hasOwnProperty(i)) {
  1071. alias_css[i] = root + alias_css[i] + '.css?v=' + ver;
  1072. }
  1073. }
  1074. //css loader
  1075. win.Wind = win.Wind || {};
  1076. //!TODO old webkit and old firefox does not support
  1077. Wind.css = function (alias/*alias or path*/, callback) {
  1078. var url = alias_css[alias] ? alias_css[alias] : alias
  1079. var link = document.createElement('link');
  1080. link.rel = 'stylesheet';
  1081. link.href = url;
  1082. link.onload = link.onreadystatechange = function () {//chrome link无onload事件
  1083. var state = link.readyState;
  1084. if (callback && !callback.done && (!state || /loaded|complete/.test(state))) {
  1085. callback.done = true;
  1086. callback();
  1087. }
  1088. }
  1089. document.getElementsByTagName('head')[0].appendChild(link);
  1090. };
  1091. /**
  1092. * 更新或者添加js 别名,在 Wind.use()调用名使用
  1093. * @param newAlias ,要设置的别名对象
  1094. */
  1095. Wind.alias = function (newAlias) {
  1096. for (var i in newAlias) {
  1097. alias[i] = newAlias[i];
  1098. }
  1099. }
  1100. /**
  1101. * 更新或者添加css 别名,在 Wind.css()调用名使用
  1102. * @param newAlias ,要设置的别名对象
  1103. */
  1104. Wind.aliasCss = function (newAlias) {
  1105. for (var i in newAlias) {
  1106. alias_css[i] = newAlias[i];
  1107. }
  1108. }
  1109. //Using the alias to load the script file
  1110. Wind.use = function () {
  1111. var args = arguments, len = args.length;
  1112. for (var i = 0; i < len; i++) {
  1113. if (typeof args[i] === 'string' && alias[args[i]]) {
  1114. args[i] = alias[args[i]];
  1115. }
  1116. }
  1117. Wind.js.apply(null, args);
  1118. };
  1119. //Wind javascript template (author: John Resig http://ejohn.org/blog/javascript-micro-templating/)
  1120. var cache = {};
  1121. Wind.tmpl = function (str, data) {
  1122. var fn = !/\W/.test(str) ? cache[str] = cache[str] || tmpl(str) :
  1123. new Function("obj", "var p=[],print=function(){p.push.apply(p,arguments);};" +
  1124. "with(obj){p.push('" +
  1125. str.replace(/[\r\t\n]/g, " ").split("<%").join("\t").replace(/((^|%>)[^\t]*)'/g, "$1\r").replace(/\t=(.*?)%>/g, "',$1,'").split("\t").join("');").split("%>").join("p.push('").split("\r").join("\\'") + "');}return p.join('');");
  1126. return data ? fn(data) : fn;
  1127. };
  1128. //Wind全局功能函数命名空间
  1129. Wind.Util = {}
  1130. })(window);