Merge pull request #927 from sharelatex/jel-plans-updates

Plans page updates
This commit is contained in:
Jessica Lawshe 2018-09-20 09:00:58 -05:00 committed by GitHub
commit d2af2fb630
3 changed files with 4 additions and 4 deletions

View file

@ -33,7 +33,7 @@ module.exports =
student: true
}
{
feature: 'hundreds_templates'
feature: 'thousands_templates'
value: 'bool'
info: 'hundreds_templates_info'
plans: {

View file

@ -2,7 +2,7 @@ script(type="text/ng-template", id="groupPlanModalTemplate")
.modal-header
h3 #{translate("group_plan_enquiry")}
.modal-body
form.text-left.form(ng-controller="UniverstiesContactController", ng-submit="contactUs()")
form.text-left.form(ng-controller="GroupPlanContactController", ng-submit="contactUs()")
span(ng-show="sent == false && error == false")
.form-group
label#title9(for='Field9')

View file

@ -2,7 +2,7 @@ define [
"base"
"libs/platform"
], (App, platform) ->
App.controller 'UniverstiesContactController', ($scope, $modal, $http) ->
App.controller 'GroupPlanContactController', ($scope, $modal, $http) ->
$scope.form = {}
$scope.sent = false
@ -20,7 +20,7 @@ define [
email: $scope.form.email
labels: "#{$scope.form.source} accounts"
message: "Please contact me with more details"
subject: "#{$scope.form.name} - General Enquiry - #{$scope.form.position} - #{$scope.form.university}"
subject: "#{$scope.form.name} - Group Enquiry - #{$scope.form.position} - #{$scope.form.university}"
inbox: "accounts"
request = $http.post "/support", data