Last active
April 5, 2017 15:49
-
-
Save BinaryMoon/df1f09bebad99f955d395ed7c995b08e to your computer and use it in GitHub Desktop.
merge javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
--- | |
/** | |
* Javascript code for https://www.binarysun.co.uk/ | |
*/ | |
{% include_relative bs_favorites.js %} | |
{% include_relative bs_fullscreen.js %} | |
{% include_relative bs_notification.js %} | |
{% include_relative bs_category_filters.js %} | |
/** | |
* Bootstrap. | |
*/ | |
(function( $ ) { | |
$( 'document' ).ready( | |
function() { | |
BS_CategoryFilters.init(); | |
BS_Favorites.init(); | |
BS_Fullscreen.init(); | |
BS_Notification.init(); | |
} | |
); | |
})( jQuery ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment