Sha256: a61e597391496eaa4a5acbf3e962c1c32d3a65defbedff0524b44b70960b1aea

Contents?: true

Size: 1.09 KB

Versions: 30

Compression:

Stored size: 1.09 KB

Contents

/**
 * Copyright 2014 Red Hat, Inc.
 *
 * This software is licensed to you under the GNU General Public
 * License as published by the Free Software Foundation; either version
 * 2 of the License (GPLv2) or (at your option) any later version.
 * There is NO WARRANTY for this software, express or implied,
 * including the implied warranties of MERCHANTABILITY,
 * NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
 * have received a copy of GPLv2 along with this software; if not, see
 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
 **/

/**
 * @ngdoc filter
 * @name Bastion.utils.filter:as
 *
 * @requires $parse
 *
 * @description
 *   Adds variable to scope with the value passed in. This allows adding to the
 *   scope a variable that contains the result of multiple applied filters.
 *
 * @example
 *   <ul>
       <li ng-repeat="item in items | filter:customFilter | as:filteredItems"></li>
     </ul>
 */
angular.module('Bastion.utils').filter('as', ['$parse', function ($parse) {
    return function (value, path) {
        return $parse(path).assign(this, value);
    };
}]);

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
bastion-0.3.3 app/assets/javascripts/bastion/utils/as.filter.js
bastion-1.0.1 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.3.2 app/assets/javascripts/bastion/utils/as.filter.js
bastion-1.0.0 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.3.1 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.3.0 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.9 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.8 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.7 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.6 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.1.14 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.5 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.3 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.2 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.1 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.2.0 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.1.13 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.1.12 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.1.11 app/assets/javascripts/bastion/utils/as.filter.js
bastion-0.1.10 app/assets/javascripts/bastion/utils/as.filter.js