Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Add to your browser as a bookmarklet; Causes annotations within Axure wireframes to be removed.
javascript:(function(){var iframe=document.getElementById('mainFrame');if(iframe){ var innerDoc=iframe.contentDocument || iframe.contentWindow.document; }else{ var innerDoc=document; } var head=innerDoc.getElementsByTagName('head')[0];var link=innerDoc.createElement('link');link.rel='stylesheet';link.type='text/css';link.href='https://rawgithub.com/jibbius/AxureReannotate/master/src/css/removeAnnotations.css';link.media='all';head.appendChild(link);})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment