@litejs/ui 23.3.3 → 23.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/load.js +4 -1
- package/package.json +2 -2
package/load.js
CHANGED
|
@@ -31,6 +31,9 @@
|
|
|
31
31
|
!function(window, Function, setTimeout) {
|
|
32
32
|
xhr._s = new Date()
|
|
33
33
|
var loaded = {}
|
|
34
|
+
, rewrite = {
|
|
35
|
+
//!{loadRewrite}
|
|
36
|
+
}
|
|
34
37
|
/*** activex ***/
|
|
35
38
|
, XMLHttpRequest = +"\v1" && window.XMLHttpRequest || Function("return new ActiveXObject('Microsoft.XMLHTTP')")
|
|
36
39
|
/**/
|
|
@@ -219,7 +222,7 @@
|
|
|
219
222
|
, len = files && files.length
|
|
220
223
|
, res = []
|
|
221
224
|
|
|
222
|
-
for (; i < len; i++) if ((file = files[i]) && 2 !== loaded[file]) {
|
|
225
|
+
for (; i < len; i++) if ((file = files[i]) && 2 !== loaded[file = rewrite[file] || file]) {
|
|
223
226
|
if (loaded[file]) {
|
|
224
227
|
// Same file requested again
|
|
225
228
|
;(loaded[file].x || (loaded[file].x = [])).push(cb, file, i)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@litejs/ui",
|
|
3
|
-
"version": "23.3.
|
|
3
|
+
"version": "23.3.4",
|
|
4
4
|
"description": "UI engine for LiteJS full-stack framework",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Lauri Rooden <lauri@rooden.ee>",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"test": "TZ='Europe/Tallinn' lj test test/index.js --brief --coverage && jshint --verbose *.js src/*.js binding/*.js polyfill/*.js"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@litejs/cli": "23.3.
|
|
28
|
+
"@litejs/cli": "23.3.4",
|
|
29
29
|
"jshint": "2.13.6"
|
|
30
30
|
},
|
|
31
31
|
"litejs": {
|