Newlines and code formatting in quicktag code.

git-svn-id: http://svn.automattic.com/wordpress/trunk@623 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2003-12-18 07:12:29 +00:00
parent f92b6e4266
commit 50ef006a57
1 changed files with 8 additions and 8 deletions

View File

@ -26,14 +26,14 @@ var datetime = now.getFullYear() + '-' +
*/
edButtons[edButtons.length] = new edButton('ed_strong'
,'B'
,'strong'
,'<strong>'
,'</strong>'
,'b'
);
edButtons[edButtons.length] = new edButton('ed_em'
,'i'
,'em'
,'<em>'
,'</em>'
,'i'
@ -70,22 +70,22 @@ edButtons[edButtons.length] = new edButton('ed_img'
edButtons[edButtons.length] = new edButton('ed_ul'
,'ul'
,'<ul>'
,'</ul>'
,'<ul>\n'
,'</ul>\n\n'
,'u'
);
edButtons[edButtons.length] = new edButton('ed_ol'
,'ol'
,'<ol>'
,'</ol>'
,'<ol>\n'
,'</ol>\n\n'
,'o'
);
edButtons[edButtons.length] = new edButton('ed_li'
,'li'
,'<li>'
,'</li>'
,'\t<li>'
,'</li>\n'
,'l'
);