23 lines
890 B
JavaScript
23 lines
890 B
JavaScript
|
|
angular.module("umbraco")
|
||
|
|
.controller("My.MarkdownEditorController",
|
||
|
|
//inject umbracos scriptLoader
|
||
|
|
function ($scope,scriptLoader) {
|
||
|
|
|
||
|
|
//tell the scriptloader to load the markdown.editor libs from the markdown editors
|
||
|
|
//plugin folder
|
||
|
|
scriptLoader
|
||
|
|
.load([
|
||
|
|
"/app_plugins/markdowneditor/lib/markdown.converter.js",
|
||
|
|
"/app_plugins/markdowneditor/lib/markdown.sanitizer.js",
|
||
|
|
"/app_plugins/markdowneditor/lib/markdown.editor.js"
|
||
|
|
])
|
||
|
|
.then(function () {
|
||
|
|
//this function will execute when all dependencies have loaded
|
||
|
|
var converter2 = new Markdown.Converter();
|
||
|
|
var editor2 = new Markdown.Editor(converter2, "-" + $scope.model.alias);
|
||
|
|
editor2.run();
|
||
|
|
});
|
||
|
|
|
||
|
|
//load the seperat css for the editor to avoid it blocking our js loading TEMP HACK
|
||
|
|
scriptLoader.load(["/app_plugins/markdowneditor/lib/markdown.css"]);
|
||
|
|
});
|