This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Instantiate global variable to house timeout object | |
var animationTimeout; | |
function recalculateDiscount() { | |
// Get previous discount | |
var previousDiscount = parseInt(totalDiscount); | |
// Get current discount | |
totalDiscount = parseInt(calculateDiscount()); | |
// If previous and current differ, update | |
if (previousDiscount != totalDiscount) { |
NewerOlder