From 2bb18a66be585384acd5a4068a4311a976e28c57 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Tue, 8 Sep 2015 22:55:56 -0700 Subject: add banner to opt in to html content change --- public/editor/editor.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'public/editor/editor.js') diff --git a/public/editor/editor.js b/public/editor/editor.js index 526a444..f0e9519 100644 --- a/public/editor/editor.js +++ b/public/editor/editor.js @@ -89,6 +89,18 @@ $(function() { }); }); + $("#micropub-html-btn").click(function(){ + $.post('/settings/html-content', { + html: 1 + }, function(data){ + }); + }); + + $.getJSON('/settings/html-content', function(data){ + if(data.html == '0') { + $('.micropub-html-warning').show(); + } + }); }); function reset_page() { -- cgit v1.2.3