twingle/twingle/content twingle.js,1.8,1.9

[email protected] Mon, 10 Mar 2003 08:31:20 -0700 (MST)
Newsgroups gmane.comp.cms.oscom.twingle.cvs
Message-ID <[email protected]>
Update of /cvs/root/twingle/twingle/content
In directory alpha.oscom.org:/tmp/cvs-serv26103/content

Modified Files:
	twingle.js 
Log Message:
- Use skin buttons of editor for twingle


Index: twingle.js
===================================================================
RCS file: /cvs/root/twingle/twingle/content/twingle.js,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** twingle.js	10 Mar 2003 11:14:20 -0000	1.8
--- twingle.js	10 Mar 2003 15:31:18 -0000	1.9
***************
*** 92,93 ****
--- 92,112 ----
  
  }
+ 
+ 
+ function twingle_dump(object)
+ {
+     for (b in object)
+     {
+ 
+         dump( b);
+         try {
+ 
+             dump (": "+object.eval(b)) ;
+         }
+         catch(e)
+         {
+             dump ( ": NOT EVALED");
+         }
+         dump ("\n");
+     }
+ }