1
0
mirror of https://github.com/Hutchy68/pivot.git synced 2024-09-21 05:11:35 +02:00
pivot/assets/scripts/pivot.js

14 lines
654 B
JavaScript
Raw Normal View History

2015-10-01 16:00:26 +02:00
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");
2015-10-01 16:00:26 +02:00
});