More fixes

This commit is contained in:
Julius Haertl
2016-07-08 22:28:06 +02:00
parent 118e1e0602
commit a36a0bd802
4 changed files with 27 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -7,7 +7,7 @@ app.config(function ($provide, $routeProvider, $interpolateProvider, $httpProvid
simplifiedAutoLink: true,
strikethrough: true,
tables: true,
tasklists: true,
tasklists: true
});

View File

@@ -0,0 +1,12 @@
// OwnCloud Click Handling
// https://doc.owncloud.org/server/8.0/developer_manual/app/css.html
app.directive('markdownChecklist', function () {
'use strict';
return {
restrict: 'C',
link: function (scope, elm) {
}
};
});

View File

@@ -37,7 +37,7 @@ app.config(["$provide", "$routeProvider", "$interpolateProvider", "$httpProvider
simplifiedAutoLink: true,
strikethrough: true,
tables: true,
tasklists: true,
tasklists: true
});
@@ -514,6 +514,19 @@ app.directive('elastic', [
};
}
]);
// OwnCloud Click Handling
// https://doc.owncloud.org/server/8.0/developer_manual/app/css.html
app.directive('markdownChecklist', function () {
'use strict';
return {
restrict: 'C',
link: function (scope, elm) {
}
};
});
app.factory('ApiService', ["$http", "$q", function($http, $q){
var ApiService = function(http, endpoint) {
this.endpoint = endpoint;