Commit d3523e1138c7ee5ffce908cc59b89dfaa4d5152c
1 parent
5943baaef2
Exists in
master
and in
1 other branch
update
Showing
2 changed files
with
21 additions
and
7 deletions
Show diff stats
pages/registration.html
... | ... | @@ -52,7 +52,7 @@ |
52 | 52 | <button class="btn btn-info float-right btn-sm button-aligment" style="float:right;padding:3px 9px;" ng-click="register('pune')">Apply</button> |
53 | 53 | </div> |
54 | 54 | <div class="clearfix"></div> |
55 | - <label class="card-sub-title"><span style="color:red"> Early bird deadline</span> : <span id="pune"></span>*</label> | |
55 | + <label class="card-sub-title"><span style="color:red"> Post deadline expires in</span> : <span id="pune"></span>*</label> | |
56 | 56 | </div> |
57 | 57 | <div class="card-text2"> |
58 | 58 | <span><b>Location</b></span> |
... | ... | @@ -225,7 +225,7 @@ |
225 | 225 | </label> |
226 | 226 | </div> |
227 | 227 | </div> |
228 | - <!-- <div class="col-md-3"> | |
228 | + <div class="col-md-3"> | |
229 | 229 | <div class="card" style="width:100%"> |
230 | 230 | <label style="cursor:pointer; padding: 0;" class="thumbnail radius-border stage-thumbnail"> |
231 | 231 | <img class="card-img-top" src="images/main.jpg" style="width:100% "> |
... | ... | @@ -246,7 +246,7 @@ |
246 | 246 | </div> |
247 | 247 | </label> |
248 | 248 | </div> |
249 | - </div> --> | |
249 | + </div> | |
250 | 250 | </div> |
251 | 251 | </div> |
252 | 252 | <div class="clearfix"></div> | ... | ... |
script.js
... | ... | @@ -50,7 +50,7 @@ |
50 | 50 | }]).run(['Analytics', function(Analytics) { }]); |
51 | 51 | |
52 | 52 | scotchApp.constant("BASE_URL", "http://139.59.68.74:4001/v1") |
53 | - // scotchApp.constant("BASE_URL", "http://0.0.0.0:4001/v1") | |
53 | + //scotchApp.constant("BASE_URL", "http://0.0.0.0:4001/v1") | |
54 | 54 | |
55 | 55 | // create the controller and inject Angular's $scope |
56 | 56 | scotchApp.controller('mainController', function($scope, $http, $location, $route, $rootScope, BASE_URL, Analytics) { |
... | ... | @@ -59,7 +59,7 @@ |
59 | 59 | hide: false |
60 | 60 | }; |
61 | 61 | |
62 | - var chennai = new Date("Nov 9, 2017 12:00:00").getTime(); | |
62 | + var chennai = new Date("Nov 9, 2017 14:00:00").getTime(); | |
63 | 63 | // Update the count down every 1 second |
64 | 64 | var x = setInterval(function() { |
65 | 65 | // Get todays date and time |
... | ... | @@ -84,7 +84,7 @@ |
84 | 84 | } |
85 | 85 | }, 1000); |
86 | 86 | |
87 | - var pune = new Date("Nov 9, 2017 12:00:00").getTime(); | |
87 | + var pune = new Date("Nov 11, 2017 12:00:00").getTime(); | |
88 | 88 | // Update the count down every 1 second |
89 | 89 | var x = setInterval(function() { |
90 | 90 | // Get todays date and time |
... | ... | @@ -533,6 +533,20 @@ |
533 | 533 | $scope.ticketAmnt = 2000; |
534 | 534 | } |
535 | 535 | } |
536 | + else if($scope.data.citymeetup == "pune"){ | |
537 | + if ($scope.data.stage == "Idea") { | |
538 | + console.log("$scope.data", $scope.data) | |
539 | + $scope.ticketAmnt = 750; | |
540 | + } | |
541 | + | |
542 | + if ($scope.data.stage == "Product") { | |
543 | + $scope.ticketAmnt = 1500; | |
544 | + } | |
545 | + | |
546 | + if ($scope.data.stage == "Growth") { | |
547 | + $scope.ticketAmnt = 1500; | |
548 | + } | |
549 | + } | |
536 | 550 | else{ |
537 | 551 | if ($scope.data.stage == "Idea") { |
538 | 552 | console.log("$scope.data", $scope.data) |
... | ... | @@ -612,7 +626,7 @@ |
612 | 626 | console.log("$scope.taxTotal----", $scope.payingAmnt) |
613 | 627 | var options = { |
614 | 628 | "key": "rzp_live_mhSE1uOBlXvFyJ", |
615 | - // "key": "rzp_test_YwHsVFiDIQ2WUQ", | |
629 | + //"key": "rzp_test_YwHsVFiDIQ2WUQ", | |
616 | 630 | "amount": $scope.payingAmnt , |
617 | 631 | |
618 | 632 | "name": "Startup Jalsa", | ... | ... |