Initial commit
This commit is contained in:
commit
43ad32700c
7085 changed files with 447606 additions and 0 deletions
11
thirdparty/tiny/plugins/example/js/.svn/all-wcprops
vendored
Normal file
11
thirdparty/tiny/plugins/example/js/.svn/all-wcprops
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 58
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/example/js
|
||||
END
|
||||
dialog.js
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 68
|
||||
/astat/!svn/ver/1/trunk/thirdparty/tiny/plugins/example/js/dialog.js
|
||||
END
|
62
thirdparty/tiny/plugins/example/js/.svn/entries
vendored
Normal file
62
thirdparty/tiny/plugins/example/js/.svn/entries
vendored
Normal file
|
@ -0,0 +1,62 @@
|
|||
9
|
||||
|
||||
dir
|
||||
34
|
||||
http://svn.astat.org/astat/trunk/thirdparty/tiny/plugins/example/js
|
||||
http://svn.astat.org/astat
|
||||
|
||||
|
||||
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
svn:special svn:externals svn:needs-lock
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
bb7ccd2a-c66b-0410-9765-967ca6f03dfc
|
||||
|
||||
dialog.js
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2009-06-08T19:44:27.000000Z
|
||||
83245e76c97e24d466cf5df2308f9bf4
|
||||
2009-06-07T19:12:55.973801Z
|
||||
1
|
||||
genuineparts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
609
|
||||
|
1
thirdparty/tiny/plugins/example/js/.svn/format
vendored
Normal file
1
thirdparty/tiny/plugins/example/js/.svn/format
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
19
thirdparty/tiny/plugins/example/js/.svn/text-base/dialog.js.svn-base
vendored
Normal file
19
thirdparty/tiny/plugins/example/js/.svn/text-base/dialog.js.svn-base
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
tinyMCEPopup.requireLangPack();
|
||||
|
||||
var ExampleDialog = {
|
||||
init : function() {
|
||||
var f = document.forms[0];
|
||||
|
||||
// Get the selected contents as text and place it in the input
|
||||
f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'});
|
||||
f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg');
|
||||
},
|
||||
|
||||
insert : function() {
|
||||
// Insert the contents from the input into the document
|
||||
tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value);
|
||||
tinyMCEPopup.close();
|
||||
}
|
||||
};
|
||||
|
||||
tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog);
|
Loading…
Add table
Add a link
Reference in a new issue