Author: ygrego Date: 2015-02-23 11:19:53 +0000 (Mon, 23 Feb 2015) New Revision: 856 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/856 Log: Rename "Math.js" in "Calculation.js" and the classname associated too. Added: oipf/js/utils/Calculation.js Removed: oipf/js/utils/Math.js Copied: oipf/js/utils/Calculation.js (from rev 852, oipf/js/utils/Math.js) =================================================================== --- oipf/js/utils/Calculation.js (rev 0) +++ oipf/js/utils/Calculation.js 2015-02-23 11:19:53 UTC (rev 856) @@ -0,0 +1,11 @@ +var Calculation = Class.extend({ + + init: function() { + }, + + genId: function(boundary, adjustment){ + + return Math.floor((Math.random() * boundary) + adjustment); + } + +}); \ No newline at end of file Deleted: oipf/js/utils/Math.js =================================================================== --- oipf/js/utils/Math.js 2015-02-23 10:49:26 UTC (rev 855) +++ oipf/js/utils/Math.js 2015-02-23 11:19:53 UTC (rev 856) @@ -1,11 +0,0 @@ -var Math = Class.extend({ - - init: function() { - }, - - genId: function(boundary, adjustment){ - - return Math.floor((Math.random() * boundary) + adjustment); - } - -}); \ No newline at end of file