Sha256: 2e151e5f1f28b43e431e6ec75826d56ff8a81baf59e512f2bd6a160ac43bc59d
Contents?: true
Size: 523 Bytes
Versions: 29
Compression:
Stored size: 523 Bytes
Contents
/** * @ngdoc object * @name Bastion.host-collections.controller:NewHostCollectionController * * @requires $scope * @requires HostCollection * * @description * Controls the creation of an empty HostCollection object for use by sub-controllers. */ angular.module('Bastion.host-collections').controller('NewHostCollectionController', ['$scope', 'HostCollection', function ($scope, HostCollection) { $scope.hostCollection = new HostCollection(); $scope.panel = {loading: false}; }] );
Version data entries
29 entries across 29 versions & 1 rubygems