Commit bc4a7c3b85b1054f914c6b6f7c4f2b4028e57984
1 parent
d3523e1138
Exists in
master
and in
1 other branch
update
Showing
2 changed files
with
6 additions
and
19 deletions
Show diff stats
pages/registration.html
... | ... | @@ -26,11 +26,11 @@ |
26 | 26 | <label class="card-sub-title">9th November,2017</label> |
27 | 27 | </div> |
28 | 28 | <div class="pull-right"> |
29 | - <button class="btn btn-info float-right btn-sm button-aligment" style="float:right;padding:3px 9px;" data-toggle="collapse" ng-click="register('chennai')">Apply</button> | |
29 | + <button class="btn btn-info float-right btn-sm button-aligment" style="float:right;padding:3px 9px;" data-toggle="collapse" ng-click="register('chennai')" disabled="">Apply</button> | |
30 | 30 | </div> |
31 | 31 | <div class="clearfix"></div> |
32 | 32 | <!-- <label class="card-sub-title"><span style="color:red"> Early bird deadline</span> : <span id="chennai"></span>*</label> --> |
33 | - <label class="card-sub-title"><span style="color:red"> Post deadline expires in</span> : <span id="chennai"></span>*</label> | |
33 | + <label class="card-sub-title"><span style="color:red"> Final deadline expired</span></label> | |
34 | 34 | </div> |
35 | 35 | <div class="card-text2"> |
36 | 36 | <span><b>Location</b></span> | ... | ... |
script.js
... | ... | @@ -59,7 +59,7 @@ |
59 | 59 | hide: false |
60 | 60 | }; |
61 | 61 | |
62 | - var chennai = new Date("Nov 9, 2017 14:00:00").getTime(); | |
62 | + var chennai = new Date("Nov 9, 2017 12: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 |
... | ... | @@ -80,7 +80,7 @@ |
80 | 80 | if (distance < 0) { |
81 | 81 | // $scope.extendedAmount = |
82 | 82 | clearInterval(x); |
83 | - document.getElementById("chennai").innerHTML = "EXPIRED"; | |
83 | + // document.getElementById("chennai").innerHTML = ""; | |
84 | 84 | } |
85 | 85 | }, 1000); |
86 | 86 | |
... | ... | @@ -519,21 +519,8 @@ |
519 | 519 | $scope.detail = result; |
520 | 520 | data.applicantId = result.data.id; |
521 | 521 | //$scope.userId = result.data.id; |
522 | - if($scope.data.citymeetup == "chennai"){ | |
523 | - if ($scope.data.stage == "Idea") { | |
524 | - console.log("$scope.data", $scope.data) | |
525 | - $scope.ticketAmnt = 1000; | |
526 | - } | |
527 | - | |
528 | - if ($scope.data.stage == "Product") { | |
529 | - $scope.ticketAmnt = 2000; | |
530 | - } | |
531 | - | |
532 | - if ($scope.data.stage == "Growth") { | |
533 | - $scope.ticketAmnt = 2000; | |
534 | - } | |
535 | - } | |
536 | - else if($scope.data.citymeetup == "pune"){ | |
522 | + | |
523 | + if($scope.data.citymeetup == "pune"){ | |
537 | 524 | if ($scope.data.stage == "Idea") { |
538 | 525 | console.log("$scope.data", $scope.data) |
539 | 526 | $scope.ticketAmnt = 750; | ... | ... |