Commit 4130b7af authored by Tristan Cavelier's avatar Tristan Cavelier

Add UriTemplate as AMD dependency

parent 041d2b00
......@@ -18,9 +18,14 @@
if (typeof define === 'function' && define.amd) {
return define(dependencies, module);
}
var namespace = module(RSVP, jIO, URI);
var namespace = module(RSVP, jIO, URI, UriTemplate);
if (namespace !== undefined) { root.ERP5Storage = namespace; }
}(this, ["rsvp", "jio", "uri"], function (RSVP, jIO, URI) {
}(this, [
"rsvp",
"jio",
"uri",
"uritemplate"
], function (RSVP, jIO, URI, UriTemplate) {
"use strict";
var hasOwnProperty = Function.prototype.call.bind(
......
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