/yui3/src/event-custom/tests/src/ |
H A D | event-custom-complex.js | 4 name: "EventTarget configured with emitFacade: true", 7 var target1 = new Y.EventTarget() 25 // pass configuration info into EventTarget with the following 27 Y.augment(O, Y.EventTarget, null, null, { 68 var a = new Y.EventTarget(), 69 b = new Y.EventTarget(), 94 a = new Y.EventTarget(config), 95 b = new Y.EventTarget(config); 149 target = new Y.EventTarget({ prefix: 'x' }); 171 target = new Y.EventTarget({ prefi [all...] |
H A D | event-custom-base.js | 10 "test new Y.EventTarget()": function () { 11 var target = new Y.EventTarget(); 13 Y.Assert.isInstanceOf(Y.EventTarget, target); 17 "test new Y.EventTarget(config)": function () { 18 var target1 = new Y.EventTarget(), 19 target2 = new Y.EventTarget({ 63 "test Y.augment(Clz, Y.EventTarget)": function () { 74 Y.augment(TestClass1, Y.EventTarget); 80 Y.Assert.areNotSame(instance.on, Y.EventTarget.prototype.on); 87 Y.Assert.areSame(instance.on, Y.EventTarget [all...] |
H A D | event-do.js | 21 var et = new Y.EventTarget(), count = 0; 68 name: "EventTarget on/before/after", 71 var target = new Y.EventTarget(), 92 // because this means every EventTarget is effectively an alias 109 var target = new Y.EventTarget(), 130 // because this means every EventTarget is effectively an alias
|
/yui3/build/attribute-events/ |
H A D | attribute-events-debug.js | 20 var EventTarget = Y.EventTarget, 31 * @uses EventTarget 36 EventTarget.call(this, {emitFacade:true}); 169 Y.mix(AttributeEvents, EventTarget, false, null, 1);
|
/yui3/src/attribute/js/ |
H A D | AttributeEvents.js | 18 var EventTarget = Y.EventTarget, variable 29 * @uses EventTarget 34 EventTarget.call(this, {emitFacade:true}); 167 Y.mix(AttributeEvents, EventTarget, false, null, 1);
|
/yui3/src/test/js/ |
H A D | EventTarget.js | 5 * @class EventTarget
8 YUITest.EventTarget = function(){
21 YUITest.EventTarget.prototype = {
24 constructor: YUITest.EventTarget,
|
H A D | TestRunner.js | 126 //inherit from EventTarget
127 YUITest.EventTarget.call(this);
216 TestRunner.prototype = YUITest.Util.mix(new YUITest.EventTarget(), {
|
/yui3/src/event-custom/tests/ |
H A D | event-custom-base-tests.js | 12 "test new Y.EventTarget()": function () { 13 var target = new Y.EventTarget(); 15 Y.Assert.isInstanceOf(Y.EventTarget, target); 19 "test new Y.EventTarget(config)": function () { 20 var target1 = new Y.EventTarget(), 21 target2 = new Y.EventTarget({ 65 "test Y.augment(Clz, Y.EventTarget)": function () { 76 Y.augment(TestClass1, Y.EventTarget); 82 Y.Assert.areNotSame(instance.on, Y.EventTarget.prototype.on); 89 Y.Assert.areSame(instance.on, Y.EventTarget [all...] |
/yui3/src/test/ |
H A D | Makefile | 14 cp $(YUITest)/util/EventTarget.js ./js/
|
/yui3/build/intl/ |
H A D | intl-debug.js | 19 * @uses EventTarget 132 Y.augment(Y.Intl, Y.EventTarget);
|
/yui3/src/async-queue/js/ |
H A D | async-queue.js | 35 * @extends EventTarget 78 Y.extend(Queue, Y.EventTarget, { 97 Y.EventTarget.call(this, { prefix: 'queue', emitFacade: true });
|
/yui3/src/graphics/js/ |
H A D | GraphicBase.js | 55 Y.EventTarget.call(this, {emitFacade:true}); 222 Y.mix(AttributeLite, Y.EventTarget, false, null, 1);
|
/yui3/src/intl/js/ |
H A D | Intl.js | 17 * @uses EventTarget 130 Y.augment(Y.Intl, Y.EventTarget);
|
/yui3/build/async-queue/ |
H A D | async-queue-debug.js | 37 * @extends EventTarget 80 Y.extend(Queue, Y.EventTarget, { 99 Y.EventTarget.call(this, { prefix: 'queue', emitFacade: true });
|
/yui3/build/graphics/ |
H A D | graphics-debug.js | 57 Y.EventTarget.call(this, {emitFacade:true}); 224 Y.mix(AttributeLite, Y.EventTarget, false, null, 1);
|
/yui3/src/node/js/ |
H A D | node-event.js | 66 Y.augment(Y_Node, Y.EventTarget);
|
/yui3/build/swf/ |
H A D | swf-debug.js | 197 Y.augment(SWF, Y.EventTarget);
|
/yui3/build/event-custom-complex/ |
H A D | event-custom-complex-debug.js | 15 ETProto = Y.EventTarget.prototype; 160 events = new Y.EventTarget({ 385 * Registers another EventTarget as a bubble target. Bubble order 394 * @param o {EventTarget} the target to add 395 * @for EventTarget 405 * @return EventTarget[] 414 * @param o {EventTarget} the target to remove 415 * @for EventTarget 426 * @for EventTarget
|
/yui3/src/swf/js/ |
H A D | swf.js | 195 Y.augment(SWF, Y.EventTarget);
|
/yui3/src/event-custom/js/ |
H A D | event-facade.js | 13 ETProto = Y.EventTarget.prototype; 158 events = new Y.EventTarget({ 383 * Registers another EventTarget as a bubble target. Bubble order 392 * @param o {EventTarget} the target to add 393 * @for EventTarget 403 * @return EventTarget[] 412 * @param o {EventTarget} the target to remove 413 * @for EventTarget 424 * @for EventTarget
|
H A D | event-target.js | 10 * EventTarget provides the implementation for any object to 14 * EventTarget is designed to be used with Y.augment to wrap 19 * @class EventTarget 91 // Y.log('EventTarget constructor executed: ' + this._yuid); 341 Y.log('EventTarget subscribe() is deprecated, use on()', 'warn', 'deprecated'); 359 * @return {EventTarget} the host 461 Y.log('EventTarget unsubscribe() is deprecated, use detach()', 'warn', 'deprecated'); 485 Y.log('EventTarget unsubscribeAll() is deprecated, use detachAll()', 'warn', 'deprecated'); 654 * @return {EventTarget} the event host 788 Y.EventTarget [all...] |
/yui3/build/history-base/ |
H A D | history-base-debug.js | 23 * @uses EventTarget 61 Y.augment(HistoryBase, Y.EventTarget, null, null, {
|
/yui3/src/history/js/ |
H A D | history-base.js | 21 * @uses EventTarget 59 Y.augment(HistoryBase, Y.EventTarget, null, null, {
|
/yui3/build/test/ |
H A D | test-debug.js | 32 * @class EventTarget 35 YUITest.EventTarget = function(){ 48 YUITest.EventTarget.prototype = { 51 constructor: YUITest.EventTarget, 905 //inherit from EventTarget 906 YUITest.EventTarget.call(this); 995 TestRunner.prototype = YUITest.Util.mix(new YUITest.EventTarget(), {
|
/yui3/src/io/js/ |
H A D | io-base.js | 26 @param {Object} config Object of EventTarget's publish method configurations 81 Y.augment(io, Y.EventTarget);
|