Blame view
sources/apps/impressionist/js/utilities.js
186 Bytes
|
42e4f8d60
|
1 2 3 4 5 6 7 8 9 10 11 12 |
var Utilities = function($) {
return {
isSupportedUA: function() {
if($.browser.webkit) {
return true;
} else {
return false;
}
}
};
}(jQuery);
|