Browse Source

Adding changes to lib and rebuilding.

pull/231/head
connors 11 years ago
parent
commit
9e6d82db7b
  1. 4
      dist/ratchet.js
  2. 9
      lib/js/popovers.js

4
dist/ratchet.js vendored

@ -36,7 +36,7 @@
}(); }();
/* ---------------------------------- /* ----------------------------------
* POPOVER v1.0.0 * POPOVER v1.0.1
* Licensed under The MIT License * Licensed under The MIT License
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* ---------------------------------- */ * ---------------------------------- */
@ -76,7 +76,7 @@
if (!anchor || !anchor.hash) return; if (!anchor || !anchor.hash) return;
try{ try {
popover = document.querySelector(anchor.hash); popover = document.querySelector(anchor.hash);
} }
catch (error) { catch (error) {

9
lib/js/popovers.js

@ -1,5 +1,5 @@
/* ---------------------------------- /* ----------------------------------
* POPOVER v1.0.0 * POPOVER v1.0.1
* Licensed under The MIT License * Licensed under The MIT License
* http://opensource.org/licenses/MIT * http://opensource.org/licenses/MIT
* ---------------------------------- */ * ---------------------------------- */
@ -39,7 +39,14 @@
if (!anchor || !anchor.hash) return; if (!anchor || !anchor.hash) return;
try {
popover = document.querySelector(anchor.hash); popover = document.querySelector(anchor.hash);
}
catch (error) {
popover = null;
}
if (popover == null) return;
if (!popover || !popover.classList.contains('popover')) return; if (!popover || !popover.classList.contains('popover')) return;

Loading…
Cancel
Save