1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 18:18:49 +02:00
blog/_src/_assets/js/app.js

31 lines
578 B
JavaScript
Raw Normal View History

//=require ../../../node_modules/webcomponents.js/CustomElements.js
2015-11-19 15:27:23 +01:00
//=require ../../../node_modules/svg4everybody/dist/svg4everybody.js
//=require ../../../node_modules/jquery/dist/jquery.js
//=require ../../../bower_components/time-elements/time-elements.js
2015-12-02 00:19:46 +01:00
2015-11-19 14:55:49 +01:00
//
// include modules
//
//=include _menu.js
//=include _search.js
2015-12-02 00:19:46 +01:00
//=include _tooltips.js
//=include _analytics.js
2015-11-19 16:52:44 +01:00
(function($) {
2013-11-23 21:53:52 +01:00
2015-11-19 14:55:49 +01:00
//
// init modules
//
Menu.init();
Search.init();
2015-12-02 00:19:46 +01:00
Tooltips.init();
GoogleAnalytics.init();
2015-11-19 15:27:23 +01:00
svg4everybody({
nosvg: false
});
2015-11-19 16:52:44 +01:00
}(jQuery));