Skip to content

Instantly share code, notes, and snippets.

View mkhamash's full-sized avatar

Mohammad Khamash mkhamash

View GitHub Profile
@mkhamash
mkhamash / Drupal views slide show cycle touch event
Last active August 29, 2015 14:02 — forked from stovak/gist:1343996
Drupal views slide show cycle touch event
// JavaScript should be made compatible with libraries other than jQuery by
// wrapping it with an "anonymous closure". See:
// - http://drupal.org/node/1446420
// - http://www.adequatelygood.com/2010/3/JavaScript-Module-Pattern-In-Depth
(function ($, Drupal, window, document, undefined) {
Drupal.settings.isTouchDevice = function() {
return "ontouchstart" in window;
}