Browse Source

Resolving minor conflict.

pull/231/head
connors 11 years ago
parent
commit
1560f083a7
  1. 4
      lib/js/modals.js

4
lib/js/modals.js

@ -21,8 +21,8 @@
window.addEventListener('touchend', function (event) {
var modal = getModal(event);
if (modal) {
modal.classList.toggle('active');
if (modal && modal.classList.contains('modal')) modal.classList.toggle('active');
event.preventDefault(); // prevents rewriting url (apps can still use hash values in url)
}
});
}();
}();

Loading…
Cancel
Save