Comparing version 0.1.13 to 0.1.14
10
nut.js
/* | ||
nut, the concise CSS selector engine | ||
Version : 0.1.13 | ||
Version : 0.1.14 | ||
Author : Aurélien Delogu (dev@dreamysource.fr) | ||
@@ -60,3 +60,9 @@ Homepage : https://github.com/pyrsmk/nut | ||
getNodeFromIdSelector=function(selector,context){ | ||
return [document.getElementById(selector)]; | ||
var node=document.getElementById(selector); | ||
if(node===null){ | ||
return []; | ||
} | ||
else{ | ||
return [node]; | ||
} | ||
}, | ||
@@ -63,0 +69,0 @@ |
{ | ||
"name" : "nut", | ||
"description" : "The concise CSS selector engine", | ||
"version" : "0.1.13", | ||
"version" : "0.1.14", | ||
"author" : "Aurélien Delogu <pyrsmk@dreamysource.fr> (http://dreamysource.fr)", | ||
@@ -6,0 +6,0 @@ "repository" : { |
7865
235