racket/new-racket-web/js/main.js
2014-03-01 19:55:48 -07:00

26 lines
484 B
JavaScript

// Gumby is ready to go
Gumby.ready(function() {
console.log('Gumby is ready to go...', Gumby.debug());
// placeholder polyfil
if(Gumby.isOldie || Gumby.$dom.find('html').hasClass('ie9')) {
$('input, textarea').placeholder();
}
});
// Oldie document loaded
Gumby.oldie(function() {
console.log("This is an oldie browser...");
});
// Touch devices loaded
Gumby.touch(function() {
console.log("This is a touch enabled device...");
});
// Document ready
$(function() {
});