3.0 source code
This commit is contained in:
17
OfficeWeb/vendor/requirejs/tests/isBrowser/isBrowser-tests.js
vendored
Normal file
17
OfficeWeb/vendor/requirejs/tests/isBrowser/isBrowser-tests.js
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
require({
|
||||
baseUrl: "./"
|
||||
},
|
||||
["a"],
|
||||
function(a) {
|
||||
doh.register(
|
||||
"isBrowser",
|
||||
[
|
||||
function isBrowser(t){
|
||||
t.is(true, a.isBrowser);
|
||||
t.is(true, requirejs.isBrowser);
|
||||
}
|
||||
]
|
||||
);
|
||||
doh.run();
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user