apollodec/Apollo/assets/js/controllers/ckeditorCtrl.js
venbatechnologies@gmail.com d06b1c0cba status file
2017-12-07 11:31:25 +05:30

18 lines
365 B
JavaScript
Executable File

'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 () {
// ...
};
}]);