UNPKG
ng-packery
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
AngularJS Directive for Packery Layout
github.com/lucaslim/angular-packery/
lucaslim/angular-packery
ng-packery
/
app
/
modules
/
packeryItem.directive.js
11 lines
(9 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
let
packeryItemDirective
= (
) => {
return
{
restrict
:
'E'
,
require
:
'^packery'
,
priority
:
1
}; };
export
default
packeryItemDirective;