Skip to content

Instantly share code, notes, and snippets.

@jmacego
Created March 14, 2019 17:25
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Bookmarklet to widen the comment field on Meraki Switch ACLs and Firewall policies
javascript:(function(){var inputs = document.getElementsByTagName("input");for(var i = 0; i < inputs.length; i++) {if(inputs[i].name.match(/comment/) || inputs[i].className.match(/comment/) ) {inputs[i].size = 100;}}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment