fixing the printing of values
This commit is contained in:
parent
4860edf678
commit
15885bd6a2
|
@ -1,5 +1,5 @@
|
||||||
// Single characters
|
// Single characters
|
||||||
(function(baselib) {
|
(function(baselib, $) {
|
||||||
var exports = {};
|
var exports = {};
|
||||||
baselib.chars = exports;
|
baselib.chars = exports;
|
||||||
|
|
||||||
|
@ -59,6 +59,13 @@
|
||||||
return this.val;
|
return this.val;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Char.prototype.toDomNode = function(params) {
|
||||||
|
return $('<span/>')
|
||||||
|
.text(this.toString())
|
||||||
|
.addClass('wescheme-character')
|
||||||
|
.get(0);
|
||||||
|
};
|
||||||
|
|
||||||
Char.prototype.getValue = function() {
|
Char.prototype.getValue = function() {
|
||||||
return this.val;
|
return this.val;
|
||||||
};
|
};
|
||||||
|
@ -80,4 +87,4 @@
|
||||||
exports.isChar = plt.baselib.makeClassPredicate(Char);
|
exports.isChar = plt.baselib.makeClassPredicate(Char);
|
||||||
|
|
||||||
|
|
||||||
})(this['plt'].baselib);
|
})(this['plt'].baselib, jQuery);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user