Last active
June 1, 2016 11:46
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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