14 lines
336 B
JavaScript
Raw Normal View History

2014-12-23 21:09:30 -05:00
Template.checkout.helpers({
chromebooks: function() {
return Chromebooks.find({}, {sort: {number: 1}});
2014-12-23 21:09:30 -05:00
}
});
2015-01-18 18:57:17 -05:00
Template.checkout.rendered = function() {
$(".chckChromebooks").mCustomScrollbar({
theme: 'dark',
scrollInertia: 0,
mouseWheel: { deltaFactor: 40 },
alwaysShowScrollbar: 2
2015-01-18 18:57:17 -05:00
});
}