1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-26 15:23:15 +00:00

Make sure all tree nodes have an addClass method

This commit is contained in:
Jeremy Ruston 2012-06-02 13:19:32 +01:00
parent ec933eb1b5
commit 5276403e39

View File

@ -75,6 +75,13 @@ Node.prototype.refreshInDom = function(changes) {
};
/*
Add a class to the node
*/
Node.prototype.addClass = function(className) {
};
exports.Node = Node;
})();