Changeset 2476
- Timestamp:
- 03/24/2005 01:26:22 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/quicktags.js
r1657 r2476 37 37 edButtons[edButtons.length] = 38 38 new edButton('ed_strong' 39 ,' str'39 ,'b' 40 40 ,'<strong>' 41 41 ,'</strong>' … … 45 45 edButtons[edButtons.length] = 46 46 new edButton('ed_em' 47 ,' em'47 ,'i' 48 48 ,'<em>' 49 49 ,'</em>' … … 62 62 new edButton('ed_block' 63 63 ,'b-quote' 64 ,' <blockquote>'65 ,'</blockquote> '64 ,'\n\n<blockquote>' 65 ,'</blockquote>\n\n' 66 66 ,'q' 67 67 ); … … 133 133 ,-1 134 134 ); 135 135 /* 136 136 edButtons[edButtons.length] = 137 137 new edButton('ed_next' … … 142 142 ,-1 143 143 ); 144 144 */ 145 145 function edLink() { 146 146 this.display = ''; … … 253 253 } 254 254 if (word != '') { 255 window.open('http:// dictionary.reference.com/search?q=' + escape(word));255 window.open('http://www.answers.com/' + escape(word)); 256 256 } 257 257 } … … 262 262 edShowButton(edButtons[i], i); 263 263 } 264 document.write('<input type="button" id="ed_spell" class="ed_button" onclick="edSpell(edCanvas);" title="Dictionary lookup" value=" Dict." />');264 document.write('<input type="button" id="ed_spell" class="ed_button" onclick="edSpell(edCanvas);" title="Dictionary lookup" value="lookup" />'); 265 265 document.write('<input type="button" id="ed_close" class="ed_button" onclick="edCloseAllTags();" title="Close all open tags" value="Close Tags" />'); 266 266 // edShowLinks(); // disabled by default
Note: See TracChangeset
for help on using the changeset viewer.