added graph of sensors (web server)
[psensor.git] / www / psensor.js
index 2092509..30b7001 100644 (file)
@@ -53,3 +53,17 @@ function type_to_unit(stype) {
 
     return unit;
 }
+
+function get_url_params()
+{
+    var vars = [], hash;
+    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
+    for(var i = 0; i < hashes.length; i++)
+    {
+        hash = hashes[i].split('=');
+        vars.push(hash[0]);
+        vars[hash[0]] = hash[1];
+    }
+    return vars;
+}
+