Commit 2add47c0 authored by Boris Kocherov's avatar Boris Kocherov

add private in list of loaded files

parent f2937bec
......@@ -123,9 +123,9 @@ AscCommon.loadSdk = function (sdkName, callback) {
});
})
.push(function (response) {
var queue = new RSVP.Queue();
response.target.response
.compile.sdk.common.forEach(function (url) {
var queue = new RSVP.Queue(),
sdk = response.target.response.compile.sdk;
sdk.common.concat(sdk.private).forEach(function (url) {
url = url.replace('../', './sdkjs/');
queue.push(function () {
return loadScript(url);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment