Explorar o código

* Tiny editor

Michaël Van Canneyt %!s(int64=3) %!d(string=hai) anos
pai
achega
56ec14f407
Modificáronse 1 ficheiros con 21 adicións e 0 borrados
  1. 21 0
      packages/tinyeditor/libtinyeditor.pp

+ 21 - 0
packages/tinyeditor/libtinyeditor.pp

@@ -0,0 +1,21 @@
+unit libtinyeditor;
+
+{$mode objfpc}
+{$modeswitch externalclass}
+
+interface
+
+Uses JS, Web;
+
+Type
+  TTinyEditor = class external name 'Object' (TJSObject)
+  Public
+    procedure transformToEditor(aElement : TJSHTMLElement);
+  end;  
+
+var
+  tinyEditor : TTinyEditor; external name '__tinyEditor';
+
+Implementation
+ 
+end.