Всем привет! Хочу подключить в приложение ck-editor. С налету почему то не получается.
Пример подключения
angular.module('controllers.ckeditor', ['ckeditor'])
.controller('CkeditorCtrl', ['$scope', function ($scope) {
// Editor options.
$scope.options = {
language: 'en',
allowedContent: true,
entities: false
};
// Called when the editor is completely ready.
$scope.onReady = function () {
// ...
};
}]);
Так вот. Что означает запись 'controllers.ckeditor'? Что то я ни разу такого не видел
Спасибо )