Sha256: d68557dce3f057917207a3e47885e52ab361f0f8d254ec1c76b9d9a074ea9d0f
Contents?: true
Size: 642 Bytes
Versions: 46
Compression:
Stored size: 642 Bytes
Contents
/** * @ngdoc object * @name Bastion.content-hosts.controller:ContentHostPackagesActionsController * * @requires $scope * @requires $location * * @description * Provides the functionality for the content host package actions. */ angular.module('Bastion.content-hosts').controller('ContentHostPackagesActionsController', ['$scope', '$location', function ($scope, $location) { var packageName = $location.search().package_name; $scope.packageAction = {actionType: 'packageInstall'}; //default to packageInstall if (packageName) { $scope.packageAction.term = packageName; } } ]);
Version data entries
46 entries across 46 versions & 1 rubygems