Sha256: c91fc52f14734b9ccf056509329eaaa6a1f1887b9a57d5276c5cf7326ec84a11
Contents?: true
Size: 1.85 KB
Versions: 9
Compression:
Stored size: 1.85 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:bstFormButtons * * @description * Encapsulates the standard structure and styling for create and cancel buttons * when used with a form. * * @example * <div bst-form-buttons on-cancel="transitionTo('product.index')" on-save="save(product)" working="working"> </div> */ angular.module('Bastion.components').directive('bstFormButtons', function () { return { replace: true, require: '^form', templateUrl: 'components/views/bst-form-buttons.html', scope: { handleCancel: '&onCancel', handleSave: '&onSave', working: '=' }, link: function (scope, iElement, iAttrs, controller) { if (scope.working === undefined) { scope.working = false; } scope.isInvalid = function () { var invalid = controller.$invalid; angular.forEach(controller, function (value) { if (value && value.$error) { if (value.$error.server) { invalid = false; } } }); return invalid; }; } }; });
Version data entries
9 entries across 9 versions & 1 rubygems