Created
March 14, 2019 17:25
-
-
Save jmacego/dd169376e646431ea2b20eae64de1cba to your computer and use it in GitHub Desktop.
Bookmarklet to widen the comment field on Meraki Switch ACLs and Firewall policies
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 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