Changeset 623
- Timestamp:
- 12/18/03 07:12:29 (5 years ago)
- Files:
-
- trunk/wp-admin/quicktags.js (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/quicktags.js
r601 r623 27 27 28 28 edButtons[edButtons.length] = new edButton('ed_strong' 29 ,' B'29 ,'strong' 30 30 ,'<strong>' 31 31 ,'</strong>' … … 34 34 35 35 edButtons[edButtons.length] = new edButton('ed_em' 36 ,' i'36 ,'em' 37 37 ,'<em>' 38 38 ,'</em>' … … 71 71 edButtons[edButtons.length] = new edButton('ed_ul' 72 72 ,'ul' 73 ,'<ul> '74 ,'</ul> '73 ,'<ul>\n' 74 ,'</ul>\n\n' 75 75 ,'u' 76 76 ); … … 78 78 edButtons[edButtons.length] = new edButton('ed_ol' 79 79 ,'ol' 80 ,'<ol> '81 ,'</ol> '80 ,'<ol>\n' 81 ,'</ol>\n\n' 82 82 ,'o' 83 83 ); … … 85 85 edButtons[edButtons.length] = new edButton('ed_li' 86 86 ,'li' 87 ,' <li>'88 ,'</li> '87 ,'\t<li>' 88 ,'</li>\n' 89 89 ,'l' 90 90 );
