INNER CODE UNIT · JavaScript
toggleFaqModalVisibility
nisrulz/app-privacy-policy-generator · src/js/main.js:330
function toggleFaqModalVisibility() {
state.showFaqModal = !state.showFaqModal;
}
function getHtml(id, target) {
var content = getContent(id);
var title = getTitle(id);
var rawHTML = getRawHTML(content, title);
wizard.contentRenderType = 2;
loadInTextView(target, rawHTML);
}
function getMarkdown(id, target) {
var content = getContent(id);
var title = getTitle(id);
var rawHTML = getRawHTML(content, title);
var markdown = convertHtmlToMd(rawHTML);
wizard.contentRenderType = 2;