Fix closing braces

This commit is contained in:
Faisal Salman 2013-03-26 10:27:24 +07:00
parent edcd5402a6
commit c1df106dca
2 changed files with 5 additions and 4 deletions

View File

@ -476,9 +476,10 @@
window.UAParser = UAParser;
// requirejs env (optional)
if (typeof(define) === FUNC_TYPE && define.amd) {
define(function() {
return UAParser;
});
define(function() {
return UAParser;
});
}
// jQuery specific (optional)
if (typeof(window.jQuery) !== UNDEF_TYPE) {
var $ = window.jQuery;

File diff suppressed because one or more lines are too long