Searched refs:action (Results 1 - 25 of 29) sorted by relevance

12

/yui3/src/editor/js/
H A Deditor-tab.js23 var action = 'indent';
30 action = 'outdent';
33 Y.log('Overriding TAB to ' + action, 'info', 'editorTab');
34 this.get(HOST).execCommand(action, '');
H A Dexec-command.js30 * @param {String} action The action to perform (bold, italic, fontname)
34 command: function(action, value) {
35 var fn = ExecCommand.COMMANDS[action];
37 Y.log('execCommand(' + action + '): "' + value + '"', 'info', 'exec-command');
39 Y.log('OVERIDE execCommand(' + action + '): "' + value + '"', 'info', 'exec-command');
40 return fn.call(this, action, value);
42 return this._command(action, value);
49 * @param {String} action The action t
[all...]
/yui3/build/editor-tab/
H A Deditor-tab-debug.js25 var action = 'indent';
32 action = 'outdent';
35 Y.log('Overriding TAB to ' + action, 'info', 'editorTab');
36 this.get(HOST).execCommand(action, '');
/yui3/src/panel/js/
H A Dpanel.js78 action : 'hide',
81 // Uses `type="button"` so the button's default action can still
/yui3/build/panel/
H A Dpanel-debug.js80 action : 'hide',
83 // Uses `type="button"` so the button's default action can still
/yui3/src/handlebars/js/
H A Dhandlebars-compiler-parser.js144 var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected;
151 action = this.defaultActions[state];
155 // read action for current state and first input
156 action = table[state] && table[state][symbol];
161 if (typeof action === 'undefined' || !action.length || !action[0]) {
211 action = table[state] && table[state][TERROR];
216 if (action[0] instanceof Array && action
[all...]
/yui3/build/oop/
H A Doop-debug.js18 function dispatch(o, f, c, proto, action) {
19 if (o && o[action] && o !== Y) {
20 return o[action].call(o, f, c);
24 return A[action](o, f, c);
26 return A[action](Y.Array(o, 0, true), f, c);
28 return Y.Object[action](o, f, c, proto);
/yui3/build/exec-command/
H A Dexec-command-debug.js32 * @param {String} action The action to perform (bold, italic, fontname)
36 command: function(action, value) {
37 var fn = ExecCommand.COMMANDS[action];
39 Y.log('execCommand(' + action + '): "' + value + '"', 'info', 'exec-command');
41 Y.log('OVERIDE execCommand(' + action + '): "' + value + '"', 'info', 'exec-command');
42 return fn.call(this, action, value);
44 return this._command(action, value);
51 * @param {String} action The action t
[all...]
/yui3/src/oop/js/
H A Doop.js16 function dispatch(o, f, c, proto, action) {
17 if (o && o[action] && o !== Y) {
18 return o[action].call(o, f, c);
22 return A[action](o, f, c);
24 return A[action](Y.Array(o, 0, true), f, c);
26 return Y.Object[action](o, f, c, proto);
/yui3/src/datatable/tests/
H A Ddatatable-mutable-tests.js794 table.data.model.prototype.sync = function (action) {
795 Y.Assert.areSame('create', action);
810 table.data.model.prototype.sync = function (action) {
811 Y.Assert.areSame('create', action);
888 table.data.model.prototype.sync = function (action) {
889 Y.Assert.areSame('create', action);
907 table.data.model.prototype.sync = function (action) {
908 Y.Assert.areSame('create', action);
1077 table.data.model.prototype.sync = function (action) {
1078 Y.Assert.areSame('update', action);
[all...]
/yui3/src/datatable/tests/src/
H A Ddatatable-mutable.js792 table.data.model.prototype.sync = function (action) {
793 Y.Assert.areSame('create', action);
808 table.data.model.prototype.sync = function (action) {
809 Y.Assert.areSame('create', action);
886 table.data.model.prototype.sync = function (action) {
887 Y.Assert.areSame('create', action);
905 table.data.model.prototype.sync = function (action) {
906 Y.Assert.areSame('create', action);
1075 table.data.model.prototype.sync = function (action) {
1076 Y.Assert.areSame('update', action);
[all...]
/yui3/src/widget-buttons/js/
H A Dwidget-buttons.js87 action: 'hide'
174 'action', 'classNames', 'context', 'events', 'isDefault', 'section'
303 @param {Function|String} [button.action] The default handler that should
310 `action` should be called with. Defaults to `this`, the widget.
512 i, len, action, context, handle;
538 action = config.action;
540 // Supports `action` as a String name of a Function on the `context`
542 if (isString(action)) {
543 action
[all...]
/yui3/build/widget-buttons/
H A Dwidget-buttons-debug.js89 action: 'hide'
176 'action', 'classNames', 'context', 'events', 'isDefault', 'section'
305 @param {Function|String} [button.action] The default handler that should
312 `action` should be called with. Defaults to `this`, the widget.
514 i, len, action, context, handle;
540 action = config.action;
542 // Supports `action` as a String name of a Function on the `context`
544 if (isString(action)) {
545 action
[all...]
/yui3/src/app/tests/
H A Dmodel-test.js68 model.sync = function (action, options, callback) {
71 Assert.areSame('delete', action, 'sync action should be "delete"');
350 model.sync = function (action, options, callback) {
353 Assert.areSame('read', action);
415 model.sync = function (action, options, callback) {
418 Assert.areSame('create', action);
430 model.sync = function (action) {
432 Assert.areSame('update', action);
791 model.sync = function (action, option
[all...]
H A Dmodel-list-test.js223 model.sync = function (action, options, callback) {
410 list.sync = function (action, options, callback) {
413 Assert.areSame('read', action);
447 list.sync = function (action, options, callback) {
448 if (action === 'read') {
469 list.sync = function (action, options, callback) {
921 list.sync = function (action, options, callback) {
/yui3/src/test/js/
H A DReporter.js129 //set the form's action
130 this._form.action = this.url;
/yui3/build/handlebars-compiler/
H A Dhandlebars-compiler-debug.js157 var symbol, preErrorSymbol, state, action, a, r, yyval={},p,len,newState, expected;
164 action = this.defaultActions[state];
168 // read action for current state and first input
169 action = table[state] && table[state][symbol];
174 if (typeof action === 'undefined' || !action.length || !action[0]) {
224 action = table[state] && table[state][TERROR];
229 if (action[0] instanceof Array && action
[all...]
/yui3/src/widget-buttons/tests/
H A Dwidget-buttons-test.js101 action: 'onFoo'
133 Assert.areSame(1, called, 'onFoo default action was not called.');
335 action: function () {
369 action: function () {
386 action: function () {
429 'A button with an `action` String should be called': function () {
433 buttons: [{name: 'foo', action: 'doSomething'}]
442 Assert.areSame(1, called, '`action` was not called.');
601 action : function () {
613 Assert.areSame(1, called, '`newButton` action wa
[all...]
/yui3/src/graphics/docs/assets/js/
H A Dradial-tool.js227 action : function (e) {
/yui3/build/io-upload-iframe/
H A Dio-upload-iframe-debug.js112 f.setAttribute('action', uri);
233 action: f.getAttribute('action'),
/yui3/src/io/js/
H A Dio-upload-iframe.js110 f.setAttribute('action', uri);
231 action: f.getAttribute('action'),
/yui3/src/loader/js/
H A Dloader.js1733 if (p.action) {
1734 // Y.log('executing pattern action: ' + pname);
1735 p.action.call(this, mname, pname);
/yui3/build/loader/
H A Dloader-debug.js1833 if (p.action) {
1834 // Y.log('executing pattern action: ' + pname);
1835 p.action.call(this, mname, pname);
/yui3/build/loader-base/
H A Dloader-base-debug.js1833 if (p.action) {
1834 // Y.log('executing pattern action: ' + pname);
1835 p.action.call(this, mname, pname);
/yui3/build/simpleyui/
H A Dsimpleyui-debug.js5523 function dispatch(o, f, c, proto, action) {
5524 if (o && o[action] && o !== Y) {
5525 return o[action].call(o, f, c);
5529 return A[action](o, f, c);
5531 return A[action](Y.Array(o, 0, true), f, c);
5533 return Y.Object[action](o, f, c, proto);
9500 * have fire, but only if the default action was not
11034 var url = this.get('action');

Completed in 302 milliseconds

12