forked from MasahiroMorita/mmorita-bootcardsjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.js
28 lines (26 loc) · 1.06 KB
/
init.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(function () {
Meteor.startup(function () {
Template.body.rendered = function () {
/*
* Initialize Bootcards.
*
* Parameters:
* - offCanvasBackdrop (boolean): show a backdrop when the offcanvas is shown
* - offCanvasHideOnMainClick (boolean): hide the offcanvas menu on clicking outside the off canvas
* - enableTabletPortraitMode (boolean): enable single pane mode for tablets in portraitmode
* - disableRubberBanding (boolean): disable the iOS rubber banding effect
* - disableBreakoutSelector (boolean) : for iOS apps that are added to the home screen:
jQuery selector to target links for which a fix should be added to not
allow those links to break out of fullscreen mode.
*/
bootcards.init( {
offCanvasBackdrop : true,
offCanvasHideOnMainClick : true,
enableTabletPortraitMode : true,
disableRubberBanding : true
});
//activate the sub-menu options in the offcanvas menu
$('.collapse').collapse();
};
});
});