mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
|
(function($) {
|
||
|
'use strict';
|
||
|
if ($('.grid').length) {
|
||
|
var colcade = new Colcade('.grid', {
|
||
|
columns: '.grid-col',
|
||
|
items: '.grid-item'
|
||
|
});
|
||
|
}
|
||
|
})(jQuery);
|