瀏覽代碼

* Tiny editor

Michaël Van Canneyt 3 年之前
父節點
當前提交
56ec14f407
共有 1 個文件被更改,包括 21 次插入0 次删除
  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.