18 lines
530 B
JavaScript
18 lines
530 B
JavaScript
|
(function() {
|
||
|
/**
|
||
|
* Enterprise marketing page.
|
||
|
*/
|
||
|
angular.module('quayPages').config(['pages', function(pages) {
|
||
|
pages.create('enterprise', 'enterprise.html', EnterpriseCtrl, {
|
||
|
'title': 'Quay Enterprise',
|
||
|
'description': 'Quay Enterprise'
|
||
|
});
|
||
|
|
||
|
function EnterpriseCtrl($scope, $location, UserService, PlanService, $routeParams) {
|
||
|
$scope.qeStartTrial = function(plan) {
|
||
|
$scope.currentQEPlan = plan;
|
||
|
$('#tectonicManagerDialog').modal('show');
|
||
|
};
|
||
|
}
|
||
|
}]);
|
||
|
}());
|