Experimental cw button replacement

master
Bob Mottram 2019-09-04 19:07:56 +01:00
parent 0be1f2bb14
commit 9084c9d906
1 changed files with 4 additions and 1 deletions

View File

@ -1167,6 +1167,9 @@ def clickToDropDownScript() -> str:
"""Function run onclick to create a dropdown """Function run onclick to create a dropdown
""" """
script= \ script= \
'function toggler(divId) {' \
' $("#" + divId).toggle();' \
'}' \
'function dropdown() {' \ 'function dropdown() {' \
' document.getElementById("myDropdown").classList.toggle("show");' \ ' document.getElementById("myDropdown").classList.toggle("show");' \
'}' '}'
@ -1690,7 +1693,7 @@ def individualPostAsHtml(pageNumber: int,baseDir: str, \
containerClass='container report' containerClass='container report'
else: else:
contentStr+='<b>Sensitive</b> ' contentStr+='<b>Sensitive</b> '
contentStr+='<button class="cwButton" onclick="showContentWarning('+"'"+postID+"'"+')">SHOW MORE</button>' contentStr+='<a href="#" onclick="toggler('+"'"+postID+"'"+');"><span class="cwButton">SHOW MORE</span></a>'
contentStr+='<div class="cwText" id="'+postID+'">' contentStr+='<div class="cwText" id="'+postID+'">'
contentStr+=postJsonObject['object']['content']+attachmentStr contentStr+=postJsonObject['object']['content']+attachmentStr
contentStr=addEmbeddedElements(contentStr) contentStr=addEmbeddedElements(contentStr)