about.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. CKEDITOR.dialog.add("about", function(a) {
  6. a = a.lang.about;
  7. var b = CKEDITOR.getUrl(
  8. CKEDITOR.plugins.get("about").path +
  9. "dialogs/" +
  10. (CKEDITOR.env.hidpi ? "hidpi/" : "") +
  11. "logo_ckeditor.png"
  12. );
  13. return {
  14. title: a.dlgTitle,
  15. minWidth: 390,
  16. minHeight: 210,
  17. contents: [
  18. {
  19. id: "tab1",
  20. label: "",
  21. title: "",
  22. expand: !0,
  23. padding: 0,
  24. elements: [
  25. {
  26. type: "html",
  27. html:
  28. '\x3cstyle type\x3d"text/css"\x3e.cke_about_container{color:#000 !important;padding:10px 10px 0;margin-top:5px}.cke_about_container p{margin: 0 0 10px;}.cke_about_container .cke_about_logo{height:81px;background-color:#fff;background-image:url(' +
  29. b +
  30. ");" +
  31. (CKEDITOR.env.hidpi ? "background-size:194px 58px;" : "") +
  32. 'background-position:center; background-repeat:no-repeat;margin-bottom:10px;}.cke_about_container a{cursor:pointer !important;color:#00B2CE !important;text-decoration:underline !important;}.cke_about_container \x3e p,.cke_rtl .cke_about_container \x3e p{text-align:center;}\x3c/style\x3e\x3cdiv class\x3d"cke_about_container"\x3e\x3cdiv class\x3d"cke_about_logo"\x3e\x3c/div\x3e\x3cp\x3eCKEditor ' +
  33. CKEDITOR.version +
  34. " (revision " +
  35. CKEDITOR.revision +
  36. ')\x3cbr\x3e\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"https://ckeditor.com/"\x3ehttps://ckeditor.com\x3c/a\x3e\x3c/p\x3e\x3cp\x3e' +
  37. a.moreInfo +
  38. '\x3cbr\x3e\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"https://ckeditor.com/legal/ckeditor-oss-license/"\x3ehttps://ckeditor.com/legal/ckeditor-oss-license/\x3c/a\x3e\x3c/p\x3e\x3cp\x3e' +
  39. a.copy.replace(
  40. "$1",
  41. '\x3ca target\x3d"_blank" rel\x3d"noopener noreferrer" href\x3d"https://cksource.com/"\x3eCKSource\x3c/a\x3e - Frederico Knabben'
  42. ) +
  43. "\x3c/p\x3e\x3c/div\x3e"
  44. }
  45. ]
  46. }
  47. ],
  48. buttons: [CKEDITOR.dialog.cancelButton]
  49. };
  50. });