Skip to content

Commit 9c18ecf

Browse files
author
Yehonal
committed
updated kernel and related repos
1 parent 6a06389 commit 9c18ecf

12 files changed

+163
-130
lines changed

.gitignore

100644100755
File mode changed.

Core.js

100644100755
+7
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ define(function () {
3232
"hwc!" + scope.const.PATH_JS_KERNEL + "Loader.js"
3333
], function (reqPlg, utils, Loader) {
3434
var $ = scope;
35+
3536
/**
3637
* Alternatives for loading in PHP-style
3738
*/
@@ -59,6 +60,12 @@ define(function () {
5960
value: $.Loader.loadSync
6061
});
6162

63+
// run pending
64+
var defs = scope.global.hwc.getPendingFunc();
65+
defs.forEach(function (args) {
66+
scope.global.hwc.defineFn.apply(scope.global.hwc, args);
67+
});
68+
6269
callback.apply(scope);
6370
});
6471

LICENSE

100644100755
File mode changed.

Loader.js

100644100755
-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
/*
2-
* Copyright (C) 2007 - 2014 Hyperweb2 All rights reserved.
3-
* GNU General Public License version 3; see www.hyperweb2.com/terms/
4-
*/
5-
61
'use strict';
72

83
hwc.define([

README.md

100644100755
File mode changed.

_upt/installer_hook.js

100644100755
File mode changed.

_upt/mocha_custom/installer_hook.js

100644100755
File mode changed.

_upt/mocha_custom/upt.custom.json

100644100755
File mode changed.

0 commit comments

Comments
 (0)