Searched defs:set (Results 1 - 14 of 14) sorted by relevance

/yui3/build/dom-style-ie/
H A Ddom-style-ie-debug.js225 set: function(node, val, style) {
254 } catch(e) { // IE throws error on invalid style set; trap common cases
256 set: function(node, val, style) {
267 set: function(node, val, style) {
/yui3/src/dom/js/
H A Ddom-style-ie.js223 set: function(node, val, style) {
252 } catch(e) { // IE throws error on invalid style set; trap common cases
254 set: function(node, val, style) {
265 set: function(node, val, style) {
H A Ddom-style.js53 * @param {String} att The style property to set.
68 if (CUSTOM_STYLES[att].set) {
69 CUSTOM_STYLES[att].set(node, val, style);
238 set: function(node, val, style) {
/yui3/src/anim/js/
H A Danim-color.js11 set: function(anim, att, from, to, elapsed, duration, fn) {
H A Danim-curve.js9 set: function(anim, att, from, to, elapsed, duration, fn) {
H A Danim-scroll.js12 set: function(anim, att, from, to, elapsed, duration, fn) {
21 node.set('scrollLeft', val[0]);
25 node.set('scrollTop', val[1]);
H A Danim-shape-transform.js6 set: function(anim, att, from, to, elapsed, duration, fn) {
39 node.set('transform', transform);
74 //anim.set("to", toAttr);
H A Danim-xy.js11 set: function(anim, att, from, to, elapsed, duration, fn) {
/yui3/src/graphics/js/
H A DGraphicBase.js42 * AttributeLite provides Attribute-like getters and setters for shape classes in the Graphics module. It provides a get/set API without the event infastructure.
66 * @param {Object} cfg Optional object containing attributes key value pairs to be set.
162 * @method set
164 * be passed in to set multiple attributes at once.
165 * @param {Any} value The value to set the attribute to. This value is ignored if an object is received as
168 set: function(attr, val)
188 * Provides setter logic. Used by `set`.
192 * be passed in to set multiple attributes at once.
193 * @param {Any} value The value to set the attribute to. This value is ignored if an object is received as
283 * `Drawing` provides a set o
[all...]
/yui3/build/simpleyui/
H A Dsimpleyui-debug.js66 // set up the core environment
138 // overriding values set in those config files if there is a '
367 // this is to set up the path to the loader. The file
841 * This private method is called from the `use` method queue. To ensure that only one set of loading
1282 //If there is a GlobalConfig, apply it first to set the defaults
1292 // set up the environment
1382 * If `throwFail` is set, `Y.error` will generate or re-throw a JS Error.
1609 * loading nodes. If not set, there is no timeout.
1632 * configure the base and combo spec for a set of modules.
1800 * When set t
[all...]
/yui3/src/simpleyui/js/
H A Dconcat.js66 // set up the core environment
138 // overriding values set in those config files if there is a '
367 // this is to set up the path to the loader. The file
841 * This private method is called from the `use` method queue. To ensure that only one set of loading
1282 //If there is a GlobalConfig, apply it first to set the defaults
1292 // set up the environment
1382 * If `throwFail` is set, `Y.error` will generate or re-throw a JS Error.
1609 * loading nodes. If not set, there is no timeout.
1632 * configure the base and combo spec for a set of modules.
1800 * When set t
[all...]
/yui3/src/attribute/js/
H A DAttributeEvents.js44 * @method set
49 * to set the value of a property within the object (e.g. <code>set("x.y.z", 5)</code>).
51 * @param {Any} value The value to set the attribute to.
55 * can be used as a flexible way to identify the source of a call to set, allowing
56 * the developer to distinguish between set called internally by the host, vs.
57 * set called externally by the application developer.
61 set : function(name, val, opts) {
66 * Allows setting of readOnly/writeOnce attributes. See <a href="#method_set">set</a> for argument details.
73 * @param {Any} val The value to set th
[all...]
H A DAttributeCore.js56 * values passed to Attribute's <a href="#method_set">set</a> method, before they are stored.</li>
62 * <p>See the <a href="#method_addAttr">addAttr</a> method, for the complete set of configuration
79 * <p>The value to return from an attribute setter in order to prevent the set from going through.</p>
134 * <dd>The initial value to set on the attribute</dd>
138 * <p>A function, which will return the initial value to set on the attribute. This is useful
144 * <p>valueFn can also be set to a string, representing the name of the instance method to be used to retrieve the value.</p>
148 * <dd>Whether or not the attribute is read only. Attributes having readOnly set to true
149 * cannot be modified by invoking the set method.</dd>
153 * Whether or not the attribute is "write once". Attributes having writeOnce set to true,
154 * can only have their values set onc
[all...]
/yui3/src/cookie/js/
H A DCookie.js242 * raw is set to true, the cookie value is not URI decoded.
353 //set options
358 //set cookie
359 return this.set(name, "", options);
411 * @param {String} name The name of the cookie to set.
412 * @param {Variant} value The value to set for the cookie.
416 * that the cookie should not be URI encoded before being set.
418 * @method set
421 set : function (name, value, options) {
426 error("Cookie.set()
[all...]

Completed in 317 milliseconds