aboutsummaryrefslogtreecommitdiff
path: root/src/library_browser.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/library_browser.js')
-rw-r--r--src/library_browser.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library_browser.js b/src/library_browser.js
index a98f4089..5461e663 100644
--- a/src/library_browser.js
+++ b/src/library_browser.js
@@ -190,7 +190,7 @@ mergeInto(LibraryManager.library, {
Browser.xhrLoad(url, function(arrayBuffer) {
assert(arrayBuffer, 'Loading data file "' + url + '" failed (no arrayBuffer).');
onload(new Uint8Array(arrayBuffer));
- removeRunDependency();
+ removeRunDependency('al ' + url);
}, function(event) {
if (onerror) {
onerror();
@@ -198,7 +198,7 @@ mergeInto(LibraryManager.library, {
throw 'Loading data file "' + url + '" failed.';
}
});
- addRunDependency();
+ addRunDependency('al ' + url);
},
isImageFile: function(name) {