bootstrap.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. require.config({
  2. paths: {
  3. 'simditor': '../addons/simditor/js/simditor.min',
  4. },
  5. shim: {
  6. 'simditor': [
  7. 'css!../addons/simditor/css/simditor.min.css'
  8. ]
  9. }
  10. });
  11. require(['form'], function (Form) {
  12. var _bindevent = Form.events.bindevent;
  13. Form.events.bindevent = function (form) {
  14. _bindevent.apply(this, [form]);
  15. if ($(".editor", form).size() > 0) {
  16. //修改上传的接口调用
  17. require(['upload', 'simditor'], function (Upload, Simditor) {
  18. var editor, mobileToolbar, toolbar;
  19. Simditor.locale = 'zh-CN';
  20. Simditor.list = {};
  21. toolbar = ['title', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale', 'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent', 'alignment'];
  22. mobileToolbar = ["bold", "underline", "strikethrough", "color", "ul", "ol"];
  23. $(".editor", form).each(function () {
  24. var id = $(this).attr("id");
  25. editor = new Simditor({
  26. textarea: this,
  27. toolbarFloat: false,
  28. toolbar: toolbar,
  29. pasteImage: true,
  30. defaultImage: Config.__CDN__ + '/assets/addons/simditor/images/image.png',
  31. upload: {url: '/'}
  32. });
  33. editor.uploader.on('beforeupload', function (e, file) {
  34. Upload.api.send(file.obj, function (data) {
  35. var url = Fast.api.cdnurl(data.url);
  36. editor.uploader.trigger("uploadsuccess", [file, {success: true, file_path: url}]);
  37. });
  38. return false;
  39. });
  40. editor.on("blur", function () {
  41. this.textarea.trigger("blur");
  42. });
  43. Simditor.list[id] = editor;
  44. });
  45. });
  46. }
  47. }
  48. });