Lines Matching refs:action
32 * @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 to perform (bold, italic, fontname)
54 _command: function(action, value) {
65 Y.log('Using default browser execCommand(' + action + '): "' + value + '"', 'info', 'exec-command');
66 inst.config.doc.execCommand(action, null, value);
84 execCommand: function(action, value) {
85 return this.exec.command(action, value);
87 _execCommand: function(action, value) {
88 return this.exec._command(action, value);