Преглед изворни кода

Fixed subsecond intervals in interval_to_seconds

Rashid Khan пре 12 година
родитељ
комит
85fd491b13
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      js/shared.js

+ 1 - 1
js/shared.js

@@ -192,7 +192,7 @@
 
   // histogram & trends
   kbn.interval_to_seconds = function(string) {
-    var matches = string.match(/(\d+)([Mwdhmsy])/);
+    var matches = string.match(/(\d+(?:\.\d+)?)([Mwdhmsy])/);
     switch (matches[2]) {
     case 'y': 
       return matches[1]*31536000;