Changeset 344
- Timestamp:
- 09/27/05 18:56:45 (8 years ago)
- Files:
-
- 1 modified
-
trunk/plugins/InsertAnchor/insert-anchor.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/InsertAnchor/insert-anchor.js
r128 r344 31 31 InsertAnchor.prototype._lc = function(string) { 32 32 return HTMLArea._lc(string, 'InsertAnchor'); 33 } 33 }; 34 34 35 35 InsertAnchor.prototype.onGenerate = function() { 36 var style_id = "IA-style" 36 var style_id = "IA-style"; 37 37 var style = this.editor._doc.getElementById(style_id); 38 38 if (style == null) { … … 43 43 this.editor._doc.getElementsByTagName("HEAD")[0].appendChild(style); 44 44 } 45 } 45 }; 46 46 47 47 InsertAnchor.prototype.buttonPress = function(editor) { … … 95 95 } 96 96 }, outparam); 97 } 97 };
