gamma-grid
Advanced tools
Comparing version 0.0.9 to 0.0.10
{ | ||
"name": "gamma-grid", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"directories": { | ||
@@ -5,0 +5,0 @@ "lib": "./src" |
@@ -56,3 +56,3 @@ /* Permission is hereby granted, free of charge, to any person obtaining | ||
var pair = pairs[i].split("="); | ||
hash[pair[0]] = pair[1]; | ||
hash[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1]).replace("+", " "); | ||
} | ||
@@ -123,3 +123,3 @@ return hash; | ||
if (queryHash['search']) { | ||
searchValue = " value=" + queryHash['search']; | ||
searchValue = " value='" + decodeURIComponent(queryHash['search']) + "'"; | ||
} | ||
@@ -126,0 +126,0 @@ $(document).on('click', '.gammaSearch .clearText', function() { |
41032