Sha256: 1fc86a506ecf01d8aef7718b901fbd44d277247a113eb9bc8440ec2890da5cee
Contents?: true
Size: 515 Bytes
Versions: 196
Compression:
Stored size: 515 Bytes
Contents
/** * @ngdoc filter * @name Bastion.content-views.filter:FilterType * * @requires FilterHelper * * @description * A filter to turn a filter type into an eaiser to read string. * * @example * {{ filter.type | filterType }} will produce the string "Include" if true and "Exclude" if false; */ angular.module('Bastion.content-views').filter('filterType', ['FilterHelper', function (FilterHelper) { return function (type) { return FilterHelper.type(type); }; }] );
Version data entries
196 entries across 196 versions & 1 rubygems