angular-kindeditor.js
2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// /**
// * @license AngularJS v1.2.9
// * (c) 2010-2014 Google, Inc. http://angularjs.org
// * License: MIT
// * Created by Zed on 19-11-2014.
// */
// (function (window, angular) {
// 'use strict';
//
// angular
// .module('ngKeditor', [])
// .directive('keditor', function ($rootScope) {
//
// var linkFn = function (scope, elm, attr, ctrl) {
//
// if (typeof window.KindEditor === 'undefined') {
// console.error('Please import the local resources of kindeditor!');
// return;
// }
//
// var _config = {
// width: '100%',
// autoHeightMode: false,
// afterCreate: function () {
// this.loadPlugin('autoheight');
// }
// };
//
// var editorId = elm[0],
// editorConfig = angular.extend(_config,scope.config);
//
// editorConfig.afterChange = function () {
// var that = this;
// scope.$apply(function () {
// ctrl.$setViewValue(that.html());
// })
// scope.$digest()
// };
//
// if (window.KindEditor) {
// window.KindEditor.ready(function (k) {
// k.create(editorId, editorConfig);
// })
// }
// var regObj = scope.pattern ? new RegExp(scope.pattern) : false;
// ctrl.$parsers.push(function (viewValue) {
// if (regObj) {
//
// regObj.test(viewValue) ? ctrl.$setValidity('nk',true) : ctrl.$setValidity('nk',false);
//
// return viewValue;
// }
//
// });
// };
//
// return {
// restrict:'AC',
// require: 'ngModel',
// scope: {
// config: '=',
// pattern:'='
// },
// link: linkFn
// };
// });
// })(window, window.angular);