/yui3/src/graphics/js/ |
H A D | GraphicBase.js | 50 var host = this; // help compression 53 host._ATTR_E_FACADE = {}; 56 host._state = {}; class 57 host.prototype = Y.mix(AttributeLite.prototype, host.prototype); 62 * Initializes the attributes for a shape. If an attribute config is passed into the constructor of the host, 70 var host = this, 75 state = host._state; 90 state[i] = host[fn].apply(host); [all...] |
/yui3/build/graphics/ |
H A D | graphics-debug.js | 52 var host = this; // help compression 55 host._ATTR_E_FACADE = {}; 58 host._state = {}; 59 host.prototype = Y.mix(AttributeLite.prototype, host.prototype); 64 * Initializes the attributes for a shape. If an attribute config is passed into the constructor of the host, 72 var host = this, 77 state = host._state; 92 state[i] = host[fn].apply(host); [all...] |
/yui3/src/attribute/js/ |
H A D | AttributeExtras.js | 52 var host = this, // help compression 55 if (host.attrAdded(name)) { 57 if (host._isLazyAttr(name)) { 58 host._addLazyAttr(name); 61 state = host._state; 74 if (!host.attrAdded(name)) {Y.log('Attribute modifyAttr:' + name + ' has not been added. Use addAttr to add the attribute', 'warn', 'attribute');} 78 * Removes an attribute from the host object 93 * @return {Object} A reference to the host object. 97 var host = this; // help compression 100 if (host [all...] |
H A D | AttributeCore.js | 48 * augmented on to a host class, and provides the host with the ability to configure 51 * <p>For example, attributes added to the host can be configured:</p> 110 * Constructor logic for attributes. Initializes the host state, and sets up the inital attributes passed to the 126 * Adds an attribute with the provided configuration to the host object. 140 * reference the host instance ("this") to obtain an initial value. If both the value and valueFn properties are defined, 200 * the context ("this") set to the host object.</p> 217 * @return {Object} A reference to the host object. 225 var host = this, // help compression 226 state = host [all...] |
/yui3/src/charts/js/ |
H A D | BottomAxisLayout.js | 36 var host = this, 37 majorTicks = host.get("styles").majorTicks, 41 host.set("leftTickOffset", 0); 42 host.set("rightTickOffset", 0); 47 host.set("topTickOffset", tickLength); 48 host.set("bottomTickOffset", 0); 51 host.set("topTickOffset", 0); 52 host.set("bottomTickOffset", tickLength); 55 host.set("topTickOffset", halfTick); 56 host [all...] |
H A D | RightAxisLayout.js | 36 var host = this, 37 majorTicks = host.get("styles").majorTicks, 41 host.set("topTickOffset", 0); 42 host.set("bottomTickOffset", 0); 47 host.set("leftTickOffset", tickLength); 48 host.set("rightTickOffset", 0); 51 host.set("leftTickOffset", 0); 52 host.set("rightTickOffset", tickLength); 55 host.set("rightTickOffset", halfTick); 56 host [all...] |
H A D | TopAxisLayout.js | 36 var host = this, 37 majorTicks = host.get("styles").majorTicks, 41 host.set("leftTickOffset", 0); 42 host.set("rightTickOffset", 0); 46 host.set("bottomTickOffset", tickLength); 47 host.set("topTickOffset", 0); 50 host.set("bottomTickOffset", 0); 51 host.set("topTickOffset", tickLength); 54 host.set("topTickOffset", halfTick); 55 host [all...] |
H A D | LeftAxisLayout.js | 36 var host = this, 37 majorTicks = host.get("styles").majorTicks, 41 host.set("topTickOffset", 0); 42 host.set("bottomTickOffset", 0); 47 host.set("rightTickOffset", tickLength); 48 host.set("leftTickOffset", 0); 51 host.set("rightTickOffset", 0); 52 host.set("leftTickOffset", tickLength); 55 host.set("rightTickOffset", halfTick); 56 host [all...] |
/yui3/build/editor-para-base/ |
H A D | editor-para-base-debug.js | 16 }, HOST = 'host', BODY = 'body', NODE_CHANGE = 'nodeChange', PARENT_NODE = 'parentNode', 28 var host = this.get(HOST), inst = host.getInstance(), sel, n, 51 var host = this.get(HOST), inst = host.getInstance(), btag; 65 var host = this.get(HOST), inst = host.getInstance(); 76 var host = this.get(HOST), inst = host.getInstance(), 79 Y.later(50, host, functio [all...] |
/yui3/src/editor/js/ |
H A D | editor-para-base.js | 14 }, HOST = 'host', BODY = 'body', NODE_CHANGE = 'nodeChange', PARENT_NODE = 'parentNode', 26 var host = this.get(HOST), inst = host.getInstance(), sel, n, 49 var host = this.get(HOST), inst = host.getInstance(), btag; 63 var host = this.get(HOST), inst = host.getInstance(); 74 var host = this.get(HOST), inst = host.getInstance(), 77 Y.later(50, host, functio [all...] |
H A D | editor-br.js | 15 }, HOST = 'host', LI = 'li'; 30 var host = this.get(HOST), inst = host.getInstance(), 37 var host = this.get(HOST); 38 host.execCommand('inserthtml', inst.EditorSelection.CURSOR); 44 host.frame._execCommand('insertlinebreak', null); 93 var host = this.get(HOST); 94 if (host.editorPara) { 98 host.after('ready', Y.bind(this._afterEditorReady, this)); 100 host [all...] |
/yui3/src/sortable/js/ |
H A D | sortable-scroll.js | 21 var host = this.get('host'); 22 host.plug(Y.Plugin.DDNodeScroll, { 23 node: host.get('container') 25 host.delegate.on('drop:over', function(e) { 33 host: {
|
/yui3/build/attribute-extras/ |
H A D | attribute-extras-debug.js | 54 var host = this, // help compression 57 if (host.attrAdded(name)) { 59 if (host._isLazyAttr(name)) { 60 host._addLazyAttr(name); 63 state = host._state; 76 if (!host.attrAdded(name)) {Y.log('Attribute modifyAttr:' + name + ' has not been added. Use addAttr to add the attribute', 'warn', 'attribute');} 80 * Removes an attribute from the host object 95 * @return {Object} A reference to the host object. 99 var host = this; // help compression 102 if (host [all...] |
/yui3/build/sortable-scroll/ |
H A D | sortable-scroll-debug.js | 23 var host = this.get('host'); 24 host.plug(Y.Plugin.DDNodeScroll, { 25 node: host.get('container') 27 host.delegate.on('drop:over', function(e) { 35 host: {
|
/yui3/build/editor-br/ |
H A D | editor-br-debug.js | 17 }, HOST = 'host', LI = 'li'; 32 var host = this.get(HOST), inst = host.getInstance(), 39 var host = this.get(HOST); 40 host.execCommand('inserthtml', inst.EditorSelection.CURSOR); 46 host.frame._execCommand('insertlinebreak', null); 95 var host = this.get(HOST); 96 if (host.editorPara) { 100 host.after('ready', Y.bind(this._afterEditorReady, this)); 102 host [all...] |
/yui3/build/resize-constrain/ |
H A D | resize-constrain-debug.js | 25 HOST = 'host', 183 host = instance.get(HOST); 185 host.delegate.dd.plug( 193 host.after('resize:align', Y.bind(instance._handleResizeAlignEvent, instance)); 194 host.on('resize:start', Y.bind(instance._handleResizeStartEvent, instance)); 214 host = instance.get(HOST), 215 info = host.info, 246 host = instance.get(HOST), 247 info = host.info, 248 maxHeight = (instance.get(MAX_HEIGHT) + host [all...] |
/yui3/src/resize/js/ |
H A D | resize-constrain.js | 23 HOST = 'host', 181 host = instance.get(HOST); 183 host.delegate.dd.plug( 191 host.after('resize:align', Y.bind(instance._handleResizeAlignEvent, instance)); 192 host.on('resize:start', Y.bind(instance._handleResizeStartEvent, instance)); 212 host = instance.get(HOST), 213 info = host.info, 244 host = instance.get(HOST), 245 info = host.info, 246 maxHeight = (instance.get(MAX_HEIGHT) + host [all...] |
/yui3/src/dd/js/ |
H A D | proxy.js | 17 HOST = 'host', 36 host: { 109 var h, h1, host = this.get(HOST), dnode = host.get(DRAG_NODE); 110 if (dnode.compareTo(host.get(NODE))) { 112 host.set(DRAG_NODE, DDM._proxy); 119 if (DDM.activeDrag === host) { 120 DDM._setFrame(host); 124 if (host.get('dragging')) { 126 host [all...] |
/yui3/build/scrollview-paginator/ |
H A D | scrollview-paginator-debug.js | 120 paginator._host = paginator.get('host'); 137 var host = this._host, 138 cb = host.get(CONTENT_BOX), 139 bb = host.get(BOUNDING_BOX), 140 vert = host._scrollsVertical, 141 size = (vert) ? host._scrollHeight : host._scrollWidth, 163 host._maxScrollX = this._pageOffsets[MAX_PAGE_COUNT-1]; 229 var host = this._host, 230 velocity = host [all...] |
/yui3/build/dd-proxy/ |
H A D | dd-proxy-debug.js | 19 HOST = 'host', 38 host: { 111 var h, h1, host = this.get(HOST), dnode = host.get(DRAG_NODE); 112 if (dnode.compareTo(host.get(NODE))) { 114 host.set(DRAG_NODE, DDM._proxy); 121 if (DDM.activeDrag === host) { 122 DDM._setFrame(host); 126 if (host.get('dragging')) { 128 host [all...] |
/yui3/src/scrollview/js/ |
H A D | paginator-plugin.js | 118 paginator._host = paginator.get('host'); 135 var host = this._host, 136 cb = host.get(CONTENT_BOX), 137 bb = host.get(BOUNDING_BOX), 138 vert = host._scrollsVertical, 139 size = (vert) ? host._scrollHeight : host._scrollWidth, 161 host._maxScrollX = this._pageOffsets[MAX_PAGE_COUNT-1]; 227 var host = this._host, 228 velocity = host [all...] |
/yui3/build/recordset-indexer/ |
H A D | recordset-indexer-debug.js | 50 var host = this.get('host'); 53 this.onHostEvent('add', Y.bind("_defAddHash", this), host); 54 this.onHostEvent('remove', Y.bind('_defRemoveHash', this), host); 55 this.onHostEvent('update', Y.bind('_defUpdateHash', this), host); 73 var host = this.get('host'), 76 len = host.getLength(); 79 obj[host._items[i].getValue(key)] = host [all...] |
/yui3/src/calendar/js/ |
H A D | calendarnavigator.js | 7 HOST = "host", 118 * The initializer lifecycle implementation. Modifies the host widget's 126 // After the host has rendered its UI, place the navigation cotnrols 144 * Private utility method that subtracts months from the host calendar date 153 var host = this.get(HOST); 154 var oldDate = host.get("date"); 155 host.set("date", ydate.addMonths(oldDate, -1*this.get("shiftByMonths"))); 161 * Private utility method that adds months to the host calendar date 170 var host = this.get(HOST); 171 var oldDate = host [all...] |
/yui3/build/calendarnavigator/ |
H A D | calendarnavigator-debug.js | 9 HOST = "host", 120 * The initializer lifecycle implementation. Modifies the host widget's 128 // After the host has rendered its UI, place the navigation cotnrols 146 * Private utility method that subtracts months from the host calendar date 155 var host = this.get(HOST); 156 var oldDate = host.get("date"); 157 host.set("date", ydate.addMonths(oldDate, -1*this.get("shiftByMonths"))); 163 * Private utility method that adds months to the host calendar date 172 var host = this.get(HOST); 173 var oldDate = host [all...] |
/yui3/src/pjax/js/ |
H A D | pjax-plugin.js | 20 this.set('container', config.host);
|