phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] news_admin/js/fckeditor/editor/dialog/common fck_dial


From: skwashd
Subject: [Phpgroupware-cvs] news_admin/js/fckeditor/editor/dialog/common fck_dialog_common.css, 1.2 fck_dialog_common.js, 1.2
Date: Thu, 4 Aug 2005 05:54:00 +0200

Update of news_admin/js/fckeditor/editor/dialog/common

Modified Files:
     Branch: MAIN
            fck_dialog_common.css lines: +16 -4
            fck_dialog_common.js lines: +10 -5

Log Message:
new newsletter builder, updated FCK and a few other things

====================================================
Index: news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.css
diff -u news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.css:1.1 
news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.css:1.2
--- news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.css:1.1      
Tue May 24 14:32:53 2005
+++ news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.css  Thu Aug 
 4 03:54:31 2005
@@ -1,6 +1,6 @@
 /*
  * FCKeditor - The text editor for internet
- * Copyright (C) 2003-2004 Frederico Caldeira Knabben
+ * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  *
  * Licensed under the terms of the GNU Lesser General Public License:
  *             http://www.opensource.org/licenses/lgpl-license.php
@@ -12,9 +12,6 @@
  *     This is the CSS file used for interface details in some dialog
  *     windows.
  *
- * Version:  2.0 RC3
- * Modified: 2005-02-08 19:20:22
- *
  * File Authors:
  *             Frederico Caldeira Knabben (address@hidden)
  */
@@ -29,6 +26,16 @@
        background-color: #ffffff;
 }

+.FlashPreviewArea
+{
+       border: #000000 1px solid;
+       padding: 5px;
+       overflow: auto;
+       width: 100%;
+       height: 170px;
+       background-color: #ffffff;
+}
+
 .BtnReset
 {
        float: left;
@@ -64,3 +71,8 @@
        cursor: pointer;
        cursor: hand;
 }
+
+.FCK__FieldNumeric
+{
+       behavior: url(fcknumericfield.htc) ;
+}
\ No newline at end of file

====================================================
Index: news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.js
diff -u news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.js:1.1 
news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.js:1.2
--- news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.js:1.1       
Tue May 24 14:32:53 2005
+++ news_admin/js/fckeditor/editor/dialog/common/fck_dialog_common.js   Thu Aug 
 4 03:54:31 2005
@@ -1,6 +1,6 @@
 /*
  * FCKeditor - The text editor for internet
- * Copyright (C) 2003-2004 Frederico Caldeira Knabben
+ * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  *
  * Licensed under the terms of the GNU Lesser General Public License:
  *             http://www.opensource.org/licenses/lgpl-license.php
@@ -11,9 +11,6 @@
  * File Name: fck_dialog_common.js
  *     Useful functions used by almost all dialog window pages.
  *
- * Version:  2.0 RC3
- * Modified: 2005-02-09 13:52:45
- *
  * File Authors:
  *             Frederico Caldeira Knabben (address@hidden)
  */
@@ -46,7 +43,10 @@
        if ( oAtt == null || !oAtt.specified )
                return valueIfNull ? valueIfNull : '' ;

-       var oValue = element.getAttribute( attName, 2 ) ;
+       var oValue ;
+
+       if ( !( oValue = element.getAttribute( attName, 2 ) ) )
+               oValue = oAtt.nodeValue ;

        return ( oValue == null ? valueIfNull : oValue ) ;
 }
@@ -66,6 +66,11 @@
                ) ;

        return event.returnValue ;
+}
+
+String.prototype.trim = function()
+{
+       return this.replace( /(^\s*)|(\s*$)/g, '' ) ;
 }

 String.prototype.startsWith = function( value )






reply via email to

[Prev in Thread] Current Thread [Next in Thread]