Слияние кода завершено, страница обновится автоматически
###*
Created by Dio on 17-9.
http://inhu.net
###
"use strict"
(->
NGUeditor = angular.module "ng.ueditor",[]
NGUeditor.directive "ueditor",[
->
restrict: "C"
require: "ngModel"
scope:
config:"="
ready:"="
link:($S, element, attr, ctrl) ->
class _NGUeditor
constructor :->
@bindRender()
@initEditor()
return
###*
* 初始化编辑器
* @return {[type]} [description]
###
initEditor : ->
_self = @
if typeof UE is 'undefined'
console.error "Please import the local resources of ueditor!"
return
# 新建UEditor,可根据API文档进行配置
_UEConfig = if $S.config then $S.config else {}
_editorId = if attr.id then attr.id else "_editor#{Date.now()}"
element[0].id = _editorId
@editor = new UE.getEditor(_editorId,_UEConfig)
@editor.ready ->
_self.editorReady = true
# 监听编辑器内容改变事件
_self.editor.addListener "contentChange", ->
ctrl.$setViewValue _self.editor.getContent()
$S.$apply() unless $S.$$phase
return
_self.setEditorContent()
$S.ready?(_self.editor)
return
setEditorContent : (content = @modelContent) ->
@editor.setContent content if @editor and @editorReady
return
bindRender : ->
_self = @
ctrl.$render = ->
_self.modelContent = (if ctrl.$isEmpty(ctrl.$viewValue) then "" else ctrl.$viewValue)
_self.setEditorContent()
return
return
new _NGUeditor()
return
]
return
)()
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )