diff --git a/src/ui-ace.js b/src/ui-ace.js index a664fb1..151fc2f 100644 --- a/src/ui-ace.js +++ b/src/ui-ace.js @@ -30,6 +30,12 @@ angular.module('ui.ace', []) */ var setOptions = function(acee, session, opts) { + // sets the ace base path + if (angular.isDefined(opts.basePath)) { + var basePathConfig = window.ace.require('ace/config'); + basePathConfig.set('basePath', opts.basePath); + } + // sets the ace worker path, if running from concatenated // or minified source if (angular.isDefined(opts.workerPath)) {