Changeset 28
- Timestamp:
- 03/05/05 06:12:56 (8 years ago)
- Files:
-
- 1 modified
-
trunk/plugins/Linker/linker.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/Linker/linker.js
r20 r28 59 59 } 60 60 61 Linker.prototype._lc = function(string) 62 { 63 return HTMLArea._lc(string, 'Linker'); 64 } 65 61 66 Linker.prototype._createLink = function(a) 62 67 { 68 if(!a && this.editor._selectionEmpty(this.editor._getSelection())) 69 { 70 alert(this._lc("You must select some text before making a new link.")); 71 return false; 72 } 63 73 64 74 var inputs = … … 363 373 } 364 374 365 Linker.Dialog.prototype._lc = function(string) 366 { 367 return HTMLArea._lc(string, 'Linker'); 368 } 375 Linker.Dialog.prototype._lc = Linker.prototype._lc; 369 376 370 377 Linker.Dialog.prototype.show = function(inputs, ok, cancel)
