[pLog-svn] r2829 - plog/branches/lifetype-1.0.3/js/editor

mark at devel.lifetype.net mark at devel.lifetype.net
Fri Jan 20 01:51:32 GMT 2006


Author: mark
Date: 2006-01-20 01:51:31 +0000 (Fri, 20 Jan 2006)
New Revision: 2829

Modified:
   plog/branches/lifetype-1.0.3/js/editor/plogeditor.js
Log:
Fixed some type error.

Modified: plog/branches/lifetype-1.0.3/js/editor/plogeditor.js
===================================================================
--- plog/branches/lifetype-1.0.3/js/editor/plogeditor.js	2006-01-20 01:06:32 UTC (rev 2828)
+++ plog/branches/lifetype-1.0.3/js/editor/plogeditor.js	2006-01-20 01:51:31 UTC (rev 2829)
@@ -518,10 +518,10 @@
   this.toolBar['3_but_u']  = new edButton( '3_but_u', 'underline', '<span style="text-decoration:underline">', '</span>', 'ed_format_underline.gif', 1 );
   this.toolBar['4_but_strikethrough'] = new edButton( '4_but_strikethrough', 'strikethrough', '<span style="text-decoration: line-through;">', '</span>', 'ed_format_strike.gif', 1 );
   this.toolBar['but_sep1'] =  new edButtonSeparator();
-  this.toolBar['but_align_left'] = new edButton( 'but_align_left', 'align center', '<div style="text-align: left;">', '</div>', 'ed_align_left.gif' );
+  this.toolBar['but_align_left'] = new edButton( 'but_align_left', 'align left', '<div style="text-align: left;">', '</div>', 'ed_align_left.gif' );
   this.toolBar['but_align_center'] = new edButton( 'but_align_center', 'align center', '<div style="text-align: center;">', '</div>', 'ed_align_center.gif' );
-  this.toolBar['but_align_right'] = new edButton( 'but_align_right', 'align center', '<div style="text-align: right;">', '</div>', 'ed_align_right.gif' );
-  this.toolBar['but_align_justify'] = new edButton( 'but_align_justify', 'align center', '<div style="text-align: justify;">', '</div>', 'ed_align_justify.gif' );
+  this.toolBar['but_align_right'] = new edButton( 'but_align_right', 'align right', '<div style="text-align: right;">', '</div>', 'ed_align_right.gif' );
+  this.toolBar['but_align_justify'] = new edButton( 'but_align_justify', 'align justify', '<div style="text-align: justify;">', '</div>', 'ed_align_justify.gif' );
   this.toolBar['but_sep2'] =  new edButtonSeparator();
   this.toolBar['but_ordered_list'] = new edButton( 'but_ordered_list', 'ordered list', '<ol><li></li></ol>', '', 'ed_list_num.gif', -1 );
   this.toolBar['but_unordered_list'] = new edButton( 'but_unordered_list', 'unordered list', '<ul><li></li></ul>', '', 'ed_list_bullet.gif', -1 );  



More information about the pLog-svn mailing list