diff --git a/img/app-512.png b/img/favicon-touch.png similarity index 100% rename from img/app-512.png rename to img/favicon-touch.png diff --git a/js/app/Config.js b/js/app/Config.js index 9a7720ed1..506d15aa0 100644 --- a/js/app/Config.js +++ b/js/app/Config.js @@ -7,7 +7,7 @@ app.config(function ($provide, $routeProvider, $interpolateProvider, $httpProvid simplifiedAutoLink: true, strikethrough: true, tables: true, - tasklists: true, + tasklists: true }); diff --git a/js/directive/markdownChecklist.js b/js/directive/markdownChecklist.js new file mode 100644 index 000000000..4612b5a28 --- /dev/null +++ b/js/directive/markdownChecklist.js @@ -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) { + + } + }; +}); + diff --git a/js/public/app.js b/js/public/app.js index b4f22b362..cfebc3819 100644 --- a/js/public/app.js +++ b/js/public/app.js @@ -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;