Commit ddcc98cafeb0544211a2f210361fa18ba0109fe0

Authored by Palak Handa
1 parent da18d079e6
Exists in master and in 1 other branch paytm

update timer

Showing 2 changed files with 6 additions and 6 deletions   Show diff stats
pages/registration.html
... ... @@ -55,7 +55,7 @@
55 55 <button class="btn btn-info float-right btn-sm button-aligment" style="float:right;padding:3px 25px;" ng-click="register('chandigarh')"><b>Apply</b></button>
56 56 </div>
57 57 <div class="clearfix"></div>
58   - <label class="card-sub-title"><span style="color:red">Prices increase in 3days(Wednesday midnight)</span> : <span id="maininvest"></span>*</label><br>
  58 + <label class="card-sub-title"><span style="color:red">Registrations close by</span> : <span id="maininvest"></span>*</label><br>
59 59 <label class="card-sub-title"><span>Agenda of the main event:<a href ="https://docs.google.com/spreadsheets/d/1NIcr0V02EMdr2rSNYXaP2gV8A5J5dQAV_a6fzAw5AE4/edit?usp=sharing" target="_blank" style="color:#269abc"> Click here</a></span></label>
60 60 <label class="card-sub-title"><span>Highlights of 2016 edition:<a href ="https://www.youtube.com/watch?v=8i1bLQ7jS0I&feature=youtu.be" target="_blank" style="color:#269abc"> https://youtu.be/8i1bLQ7jS0I</a></span></label>
61 61 <label class="card-sub-title"><span>Concept of 2017 edition:<a href ="https://www.youtube.com/watch?v=FpJWuhZj1bc&feature=youtu.be" target="_blank" style="color:#269abc"> https://youtu.be/FpJWuhZj1bc</a></span></label>
... ...
... ... @@ -59,7 +59,7 @@
59 59 hide: false
60 60 };
61 61  
62   - var maininvest = new Date("Dec 14, 2017 00:00:00").getTime();
  62 + var maininvest = new Date("Dec 15, 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
... ... @@ -511,12 +511,12 @@
511 511 if($scope.data.citymeetup == "chandigarh"){
512 512 if ($scope.data.stage == "Pitch your Business plan") {
513 513 console.log("$scope.data", $scope.data)
514   - $scope.ticketAmnt = 3250;
  514 + $scope.ticketAmnt = 3500;
515 515 $scope.ticketAmnt = parseInt($scope.data.quantity)*$scope.ticketAmnt;
516 516 }
517 517  
518 518 if ($scope.data.stage == "Pitch your Startup") {
519   - $scope.ticketAmnt = 3875;
  519 + $scope.ticketAmnt = 4250;
520 520 $scope.ticketAmnt = parseInt($scope.data.quantity)*$scope.ticketAmnt;
521 521 }
522 522  
... ... @@ -531,12 +531,12 @@
531 531 if ($scope.data.stage == "Pitch your Business plan") {
532 532 console.log("$scope.data", $scope.data)
533 533 /*add 25%*/
534   - $scope.ticketAmnt = 1250 ;
  534 + $scope.ticketAmnt = 1500 ;
535 535 $scope.ticketAmnt = parseInt($scope.data.quantity)*$scope.ticketAmnt;
536 536 }
537 537  
538 538 if ($scope.data.stage == "Pitch your Startup") {
539   - $scope.ticketAmnt = 1875;
  539 + $scope.ticketAmnt = 2250;
540 540 $scope.ticketAmnt = parseInt($scope.data.quantity)*$scope.ticketAmnt;
541 541 }
542 542  
... ...