Whoops, broke build, now fixed

This commit is contained in:
perploug
2013-08-23 14:19:16 +02:00
parent c77f17962e
commit 13afb127f4
2 changed files with 25 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
angular.module("umbraco")
.controller("My.MarkdownEditorController",
//inject umbracos assetsServce
function ($scope,assetsService) {
//inject umbracos assetsServce and dialog service
function ($scope,assetsService, dialogService) {
//tell the assets service to load the markdown.editor libs from the markdown editors
//plugin folder
@@ -21,6 +21,29 @@ function ($scope,assetsService) {
var converter2 = new Markdown.Converter();
var editor2 = new Markdown.Editor(converter2, "-" + $scope.model.alias);
editor2.run();
//subscribe to the image dialog clicks
editor2.hooks.set("insertImageDialog", function (callback) {
alert("Please click okay to start scanning your brain...");
dialogService.mediaPicker({callback: function(data){
$(data.selection).each(function(i, item){
alert(item);
});
}});
/*
setTimeout(function () {
var prompt = "We have detected that you like cats. Do you want to insert an image of a cat?";
if (confirm(prompt))
callback("http://icanhascheezburger.files.wordpress.com/2007/06/schrodingers-lolcat1.jpg")
else
callback(null);
}, 2000);
*/
return true; // tell the editor that we'll take care of getting the image url
});
});
//load the seperat css for the editor to avoid it blocking our js loading TEMP HACK