Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

21 lines
521 B
JavaScript

require({
baseUrl: requirejs.isBrowser ? "./" : "./remoteUrls/"
},
["require", "jqwrap"],
function(require, jqwrap) {
doh.register(
"remoteUrls",
[
function remoteUrls(t){
t.is(true, jqwrap.isFunction);
t.is(true, !!jqwrap.swfobject);
t.is('util', jqwrap.util.name);
t.is('util2', jqwrap.util2.name);
}
]
);
doh.run();
}
);