apollodec/Apollo/assets/js/controllers/ckeditorCtrl.js
saravanakumar_kandasami 7d72a0b91a updated code
2017-11-21 14:56:39 +05:30

18 lines
365 B
JavaScript

'use strict';
/**
* controller for angular-ckeditor
*/
app.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 () {
// ...
};
}]);