More fixes
This commit is contained in:
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
@@ -7,7 +7,7 @@ app.config(function ($provide, $routeProvider, $interpolateProvider, $httpProvid
|
|||||||
simplifiedAutoLink: true,
|
simplifiedAutoLink: true,
|
||||||
strikethrough: true,
|
strikethrough: true,
|
||||||
tables: true,
|
tables: true,
|
||||||
tasklists: true,
|
tasklists: true
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
12
js/directive/markdownChecklist.js
Normal file
12
js/directive/markdownChecklist.js
Normal 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) {
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
@@ -37,7 +37,7 @@ app.config(["$provide", "$routeProvider", "$interpolateProvider", "$httpProvider
|
|||||||
simplifiedAutoLink: true,
|
simplifiedAutoLink: true,
|
||||||
strikethrough: true,
|
strikethrough: true,
|
||||||
tables: 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){
|
app.factory('ApiService', ["$http", "$q", function($http, $q){
|
||||||
var ApiService = function(http, endpoint) {
|
var ApiService = function(http, endpoint) {
|
||||||
this.endpoint = endpoint;
|
this.endpoint = endpoint;
|
||||||
|
|||||||
Reference in New Issue
Block a user