Module to use ace editor in angular js
npm install ace-angular
npm install ace-angular
`
Usage
`html
`
Create angular module
`js
var app = angular.module('myapp',['ace.angular']);
`
Using directive
`html
`
Controller
`js
$scope.aceOptions = {
method: 'sql',
theme: 'sqlserver',
onLoad: function(editor, session, ace){
// do anythig
}
}
``