This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/js/pages/enterprise.js
Joseph Schorr c6f7dfa102 Add Enterprise Landing page
Note: The design comes directparners.
2016-04-28 13:47:54 -04:00

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');
};
}
}]);
}());