Changeset 28148

Show
Ignore:
Timestamp:
01/08/09 04:28:16 (6 months ago)
Author:
drry
Message:
  • fixed typos.
  • et cetera.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/resizeble_textarea.js

    r28145 r28148  
    99<VimperatorPlugin> 
    1010  <name>{NAME}</name> 
    11   <description>resizeble textarea</description> 
     11  <description>Allows you to resize textareas.</description> 
    1212  <description lang="ja">テキストエリアをリサイズ可能にする。</description> 
    1313  <author mail="suvene@zeromemory.info" homepage="http://zeromemory.sblo.jp/">suVene</author> 
     
    4141    }; 
    4242  }, 
    43   resizeble: function(args) { 
     43  resizable: function(args) { 
    4444    this.changeCursor(false); 
    4545    this.doc.addEventListener("mousedown", this.handler.initResize, false); 
     
    9494      return function(event) { 
    9595        return func.apply(obj, [ event ].concat(args)); 
    96       } 
     96      }; 
    9797  } 
    9898}; 
    9999 
    100100commands.addUserCommand( 
    101   [ "textareaResize", "tr" ], "resizeble textarea.", 
     101  [ "textareaResize", "tr" ], "resizable textarea.", 
    102102  function() { 
    103103    var instance = new TextResizer(window.content.document); 
    104     instance.resizeble.apply(instance, arguments); 
     104    instance.resizable.apply(instance, arguments); 
    105105  }, 
    106106  null,