1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(function (_super) {
var NS = 'http://www.w3.org/2000/svg';
hui.ui.Emotion = function(options) {
options = options || {};
_super.call(this, options);
this.value = null;
this._attach();
};
hui.ui.Emotion.create = function() {
var node = document.createElementNS(ns,'svg');
node.addAttribute('width','100');
node.addAttribute('height','100');
return new hui.ui.Emotion({element: node})
}
hui.ui.Emotion.prototype = {
};
hui.extend(hui.ui.Emotion, _super);
hui.define('hui.ui.Emotion', hui.ui.Emotion);
})(hui.ui.Component);