c6f7dfa102
Note: The design comes directparners.
18 lines
No EOL
530 B
JavaScript
18 lines
No EOL
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');
|
|
};
|
|
}
|
|
}]);
|
|
}()); |