Changeset 623

Show
Ignore:
Timestamp:
12/18/03 07:12:29 (5 years ago)
Author:
saxmatt
Message:

Newlines and code formatting in quicktag code.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/quicktags.js

    r601 r623  
    2727 
    2828edButtons[edButtons.length] = new edButton('ed_strong' 
    29                                           ,'B
     29                                          ,'strong
    3030                                          ,'<strong>' 
    3131                                          ,'</strong>' 
     
    3434 
    3535edButtons[edButtons.length] = new edButton('ed_em' 
    36                                           ,'i
     36                                          ,'em
    3737                                          ,'<em>' 
    3838                                          ,'</em>' 
     
    7171edButtons[edButtons.length] = new edButton('ed_ul' 
    7272                                          ,'ul' 
    73                                           ,'<ul>
    74                                           ,'</ul>
     73                                          ,'<ul>\n
     74                                          ,'</ul>\n\n
    7575                                          ,'u' 
    7676                                          ); 
     
    7878edButtons[edButtons.length] = new edButton('ed_ol' 
    7979                                          ,'ol' 
    80                                           ,'<ol>
    81                                           ,'</ol>
     80                                          ,'<ol>\n
     81                                          ,'</ol>\n\n
    8282                                          ,'o' 
    8383                                          ); 
     
    8585edButtons[edButtons.length] = new edButton('ed_li' 
    8686                                          ,'li' 
    87                                           ,'<li>' 
    88                                           ,'</li>
     87                                          ,'\t<li>' 
     88                                          ,'</li>\n
    8989                                          ,'l' 
    9090                                          );