From 978d44135a2c60ec26a8e5220f8de21240c34fd7 Mon Sep 17 00:00:00 2001 From: rolux Date: Sun, 3 Mar 2013 11:02:44 +0000 Subject: [PATCH] fix a typo in Ox.URL --- source/Ox.UI/js/Core/URL.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Core/URL.js b/source/Ox.UI/js/Core/URL.js index f8c0022a..273b0938 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -902,7 +902,7 @@ Ox.URL = function(options) { } else if (type == 'integer') { value = Math.round(str) || 0; } else if (type == 'time') { - value = Ox.formatDurarion(Ox.parseDuration(value)); + value = Ox.formatDuration(Ox.parseDuration(value)); } else if (type == 'year') { value = Math.round(str) || 1970; }