diff --git a/whalesong/js-assembler/runtime-src/baselib-chars.js b/whalesong/js-assembler/runtime-src/baselib-chars.js index d3a999d..1cf83f3 100644 --- a/whalesong/js-assembler/runtime-src/baselib-chars.js +++ b/whalesong/js-assembler/runtime-src/baselib-chars.js @@ -1,5 +1,5 @@ // Single characters -(function(baselib) { +(function(baselib, $) { var exports = {}; baselib.chars = exports; @@ -59,6 +59,13 @@ return this.val; }; + Char.prototype.toDomNode = function(params) { + return $('') + .text(this.toString()) + .addClass('wescheme-character') + .get(0); + }; + Char.prototype.getValue = function() { return this.val; }; @@ -80,4 +87,4 @@ exports.isChar = plt.baselib.makeClassPredicate(Char); -})(this['plt'].baselib); \ No newline at end of file +})(this['plt'].baselib, jQuery);