Sha256: 75b3a5f2936f64930164fd8718b9301fa22eb92c67c475b7815b3f251fb75db4
Contents?: true
Size: 1.33 KB
Versions: 21
Compression:
Stored size: 1.33 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 directive * @name Bastion.components.directive:bstSaveControl * * @description * Simple directive for encapsulating create and cancel buttons. This includes states * for disabling buttons and setting a visual working state. * * @example * <pre> * <div bst-save-control * on-cancel="closeItem()" * on-save="save(product)" * invalid="productForm.$invalid"> * </div> */ angular.module('Bastion.components').directive('bstSaveControl', function () { return { restrict: 'AE', replace: true, templateUrl: 'components/views/bst-save-control.html', scope: { handleSave: '&onSave', handleCancel: '&onCancel', invalid: '=', working: '=' } }; });
Version data entries
21 entries across 21 versions & 1 rubygems