apollo_developers/assets/js/controllers/ckeditorCtrl.js
saravanakumar_kandasami a11795c215 SIT code
2018-04-19 18:17:06 +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 () {
// ...
};
}]);