apollo_developers/assets/js/controllers/ckeditorCtrl.js
2018-04-19 11:48:46 +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 () {
// ...
};
}]);