Created
October 31, 2013 02:53
-
-
Save lscott3/7243717 to your computer and use it in GitHub Desktop.
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
calculatePrice = (selector) -> | |
total = 0.00 | |
$.each $(selector), (index, value) -> | |
num = parseFloat($(this).html(), 10) | |
total = Math.round((total + num) * 1e10) / 1e10 | |
total |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment