Lines Matching refs:action
30 * @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 to perform (bold, italic, fontname)
52 _command: function(action, value) {
63 Y.log('Using default browser execCommand(' + action + '): "' + value + '"', 'info', 'exec-command');
64 inst.config.doc.execCommand(action, null, value);
82 execCommand: function(action, value) {
83 return this.exec.command(action, value);
85 _execCommand: function(action, value) {
86 return this.exec._command(action, value);