1
0
mirror of https://github.com/Hutchy68/pivot.git synced 2024-09-20 21:01:35 +02:00
pivot/assets/scripts/pivot.js
Tealk db642cbb53 Font-Awesome fixed and IE9 removed (#52)
* replaced the font-awesome js with css
* fixed #47
* fixed #46
* removed IE9 support
2018-02-08 09:58:41 -05:00

14 lines
654 B
JavaScript

jQuery(document).ready(function() {
jQuery(document).foundation(function (response) {
if (window.console) console.log(response.errors);
});
// The Echo extension puts an item in personal tools that Foreground really should have in the top menu
// to make this easier, we move it here and loaded earlier to speed up transform
jQuery("#pt-notifications").prependTo("#echo-notifications-alerts");
jQuery("#pt-notifications-message").prependTo("#echo-notifications-messages");
jQuery("#pt-notifications-alert").prependTo("#echo-notifications-alerts");
jQuery("#pt-notifications-notice").prependTo("#echo-notifications-notice");
});