zjquery: Support $('<div>').html().

This commit is contained in:
Steve Howell
2017-06-14 08:17:03 -04:00
parent 0e8f1f4e5d
commit 5272b6644e

View File

@@ -116,6 +116,11 @@ exports.make_zjquery = function () {
}
},
};
if (selector[0] === '<') {
self.html(selector);
}
return self;
}