Sha256: df37a940d387cd2a8c58cb996585f2e32635d82f8a03e3717787c73354c94329
Contents?: true
Size: 518 Bytes
Versions: 11
Compression:
Stored size: 518 Bytes
Contents
angular.module('flow.btn', ['flow.init']) .directive('flowBtn', [function() { return { 'restrict': 'EA', 'scope': false, 'require': '^flowInit', 'link': function(scope, element, attrs) { var isDirectory = attrs.hasOwnProperty('flowDirectory'); var isSingleFile = attrs.hasOwnProperty('flowSingleFile'); var inputAttrs = attrs.hasOwnProperty('flowAttrs') && scope.$eval(attrs.flowAttrs); scope.$flow.assignBrowse(element, isDirectory, isSingleFile, inputAttrs); } }; }]);
Version data entries
11 entries across 11 versions & 1 rubygems