28 lines
592 B
JavaScript
28 lines
592 B
JavaScript
/**
|
|
* Gumby Init
|
|
*/
|
|
|
|
// test for touch event support
|
|
Modernizr.load({
|
|
test: Modernizr.touch,
|
|
|
|
// if present load custom jQuery mobile build and update Gumby.click
|
|
yep: Gumby.path+'/jquery.mobile.custom.min.js',
|
|
callback: function(url, result, key) {
|
|
// check jQuery mobile has successfully loaded before using tap events
|
|
if($.mobile) {
|
|
window.Gumby.click = 'tap';
|
|
}
|
|
},
|
|
|
|
// either way initialize Gumby
|
|
complete: function() {
|
|
window.Gumby.init();
|
|
|
|
// if AMD return Gumby object to define
|
|
if(typeof define == "function" && define.amd) {
|
|
define(window.Gumby);
|
|
}
|
|
}
|
|
});
|