Make the contact page dynamic so that enterprise customers can configure it however they like

This commit is contained in:
Joseph Schorr 2014-10-22 14:49:33 -04:00
parent 1df936350a
commit 8b331b453e
7 changed files with 82 additions and 35 deletions

View file

@ -6474,6 +6474,14 @@ quayApp.directive('ngVisible', function () {
};
});
quayApp.config( [
'$compileProvider',
function( $compileProvider )
{
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|tel|irc):/);
}
]);
quayApp.run(['$location', '$rootScope', 'Restangular', 'UserService', 'PlanService', '$http', '$timeout', 'CookieService', 'Features', '$anchorScroll',
function($location, $rootScope, Restangular, UserService, PlanService, $http, $timeout, CookieService, Features, $anchorScroll) {