export function initialize(/* application*/) { // Add 'touch' or 'no-touch' to the so CSS can depend on the device type. var body = $('BODY'); if ('ontouchstart' in document.documentElement) { // Has touch, like an iPad body.addClass('touch'); } else { // Does not have touch, like a desktop body.addClass('no-touch'); } } export default { name: 'touch', initialize: initialize };