inserthtml.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*********************************************************************************************************/
  2. /**
  3. * inserthtml plugin for CKEditor 4.x (Author: gpickin ; email: gpickin@gmail.com)
  4. * version: 2.0
  5. * Released: On 2015-03-10
  6. * Download: http://www.github.com/gpickin/ckeditor-inserthtml
  7. *
  8. *
  9. * Modified from original: inserthtml plugin for CKEditor 3.x (Author: Lajox ; Email: lajox@19www.com)
  10. * mod-version: 1.0
  11. * mod-Released: On 2009-12-11
  12. * mod-Download: http://code.google.com/p/lajox
  13. */
  14. /*********************************************************************************************************/
  15. CKEDITOR.dialog.add('inserthtmlDialog',function(editor){
  16. return{
  17. title:'Insert HTML',
  18. minWidth:380,
  19. minHeight:220,
  20. contents:[
  21. { id:'info',
  22. label:'HTML',
  23. elements:[
  24. { type:'textarea',
  25. id:'insertcode_area',
  26. label:''
  27. }
  28. ]
  29. }
  30. ],
  31. onOk: function() {
  32. var sInsert=this.getValueOf('info','insertcode_area');
  33. if ( sInsert.length > 0 )
  34. editor.insertHtml(sInsert);
  35. }
  36. };
  37. });