diff --git a/Clipper/joplin-webclipper/content_scripts/index.js b/Clipper/joplin-webclipper/content_scripts/index.js index 6d327f9be..2a102f360 100644 --- a/Clipper/joplin-webclipper/content_scripts/index.js +++ b/Clipper/joplin-webclipper/content_scripts/index.js @@ -38,7 +38,7 @@ const node = childNodes[i]; let isVisible = node.nodeType === 1 ? window.getComputedStyle(node).display !== 'none' : true; - if (isVisible && ['input', 'textarea', 'script', 'style', 'select', 'option', 'button'].indexOf(node.nodeName.toLowerCase()) >= 0) isVisible = false; + if (isVisible && ['input', 'textarea', 'script', 'noscript', 'style', 'select', 'option', 'button'].indexOf(node.nodeName.toLowerCase()) >= 0) isVisible = false; if (!isVisible) { element.removeChild(node); diff --git a/joplin.sublime-project b/joplin.sublime-project index a32b7ff36..1cdc74eac 100755 --- a/joplin.sublime-project +++ b/joplin.sublime-project @@ -26,6 +26,7 @@ "*.min.js", "*.bundle.js", "yarn.lock", + "*.icns" ], "folder_exclude_patterns": [ @@ -61,20 +62,9 @@ "_releases", "ReactNativeClient/lib/csstojs", "Clipper/joplin-webclipper/popup/build", - "Clipper/joplin-webclipper/dist", + "Clipper/joplin-webclipper/dist" ], "path": "." - }, - { - "file_exclude_patterns": - [ - "src/log.txt", - ], - "folder_exclude_patterns": - [ - "node_modules", - ], - "path": "D:\\Docs\\PROGS\\Node\\tkwidgets" } - ], -} \ No newline at end of file + ] +}