Skip to content

Instantly share code, notes, and snippets.

@jibbius
Last active June 1, 2016 11:46
Show Gist options
  • Save jibbius/9bace6b2c005083725f0d7c05e0e05a6 to your computer and use it in GitHub Desktop.
Save jibbius/9bace6b2c005083725f0d7c05e0e05a6 to your computer and use it in GitHub Desktop.
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