Search

Searched defs:config (Results 1 - 6 of 6) sorted by relevance

/yui3/src/event/js/
H A Doutside.js65 var config = {
94 config.detachDelegate = config.detach;
96 Y.Event.define(name, config);
/yui3/src/node/js/
H A Dnode-load.js50 var config = {
58 Y.io(url, config);
/yui3/src/yui/scripts/
H A Dnpm_package_shim.js8 exports.YUI.config.doc = { documentElement: {} };
/yui3/src/event-valuechange/js/
H A Devent-valuechange.js38 config, // defined at the end of this file
455 config = {
467 Y.Event.define('valuechange', config);
468 Y.Event.define('valueChange', config); // deprecated, but supported for backcompat
/yui3/src/io/js/
H A Dio-base.js14 win = Y.config.win,
26 @param {Object} config Object of EventTarget's publish method configurations
29 function IO (config) {
33 io._init(config);
76 _init: function(config) {
79 io.cfg = config || {};
86 io.publish('io:' + EVENTS[i], Y.merge({ broadcast: 1 }, config));
89 io.publish('io-trn:' + EVENTS[i], config);
104 _create: function(config, id) {
110 alt = config
[all...]
/yui3/src/transition/js/
H A Dtransition-native.js11 DOCUMENT = Y.config.doc,
117 init: function(node, config) {
120 if (!anim._running && config) {
121 anim._config = config;
124 anim._duration = ('duration' in config) ?
125 config.duration: anim.constructor.DEFAULT_DURATION;
127 anim._delay = ('delay' in config) ?
128 config.delay: anim.constructor.DEFAULT_DELAY;
130 anim._easing = config.easing || anim.constructor.DEFAULT_EASING;
139 addProperty: function(prop, config) {
[all...]

Completed in 4309 milliseconds