include jqplot default css
[psensor.git] / www / psensor.js
index 79757ea..30b7001 100644 (file)
@@ -31,12 +31,14 @@ function type_to_str(stype) {
         stype_str = "NVidia";
     } else if (stype & 0x0400) {
         stype_str = "HDD";
-    } else if (stype & 0x0800) {
-        stype_str = "Fan";
+    } else if (stype & 0x1000) {
+        stype_str = "AMD";
     }
 
    if (stype & 0x0001) {
-        stype_str += " Temperature";
+       stype_str += " Temperature";
+   } else if (stype & 0x0002) {
+       stype_str += " Fan";
    }
 
     return stype_str;
@@ -51,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;
+}
+