12345678910111213141516171819202122232425262728293031323334353637 |
- angular.module("noteWrangler")
- .directive('nwCard', function ($sce) {
- return {
-
- link: function (scope, element, attrs) {
- scope.body = $sce.trustAsHtml(markdown.toHTML(scope.body));
- element("div.card").on("click", function () {
- element("div.card p").toggleClass("hidden");
- });
- },
- restrict: "E",
-
- scope: {
-
-
-
- header: "=",
- icon: "=",
- },
- templateUrl: "templates/directives/nw-card.html",
- }
- });
|