소스 검색

* 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.