plutopluto

git clone https://git.ce9e.org/plutopluto.git

commit
7ba6c3abc3d706d6c1f79d8523908dbb9f44acf9
parent
a4d1cc5a971705d85eb44366ec69d3c5148541f1
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2015-07-19 18:27
allow to throw elements into jqlite

Diffstat

M plutopluto/static/jqlite.js 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/plutopluto/static/jqlite.js b/plutopluto/static/jqlite.js

@@ -3,7 +3,7 @@
    3     3 var $ = function(query) {
    4     4 	var ob = {};
    5     5 
    6    -1 	if (query == document) {
   -1     6 	if (query == document || query.ELEMENT_NODE) {
    7     7 		ob.target = query;
    8     8 	} else if (query.trim()[0] === '<') {
    9     9 		var div = document.createElement('div');