国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
777B

  1. CKEDITOR.plugins.add("ddfilebrowser", {
  2. icons: "ddfilebrowser",
  3. init: function (a) {
  4. a.addCommand("openDDFileBrowser",
  5. {
  6. exec: function (a)
  7. {
  8. if ($Nav() == 'IE') { var posLeft = window.event.clientX - 200; var posTop = window.event.clientY - 50; }
  9. else { var posLeft = 100; var posTop = 100; }
  10. window.open("./dialog/select_soft.php?f=" + a.name, "popUpImagesWin", "scrollbars=yes,resizable=yes,statebar=no,width=600,height=400,left=" + posLeft + ", top=" + posTop);
  11. }
  12. });
  13. a.ui.addButton("DDFileBrowser",
  14. {
  15. label: "插入附件",
  16. command: "openDDFileBrowser",
  17. toolbar: "insert"
  18. })
  19. }
  20. });