Advertisement
vindree

BWPCTI-GM-BSPF-00

Jan 7th, 2015 (edited)
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Bigger ServicePro Fields
  3. // @namespace    https://www.hotelservicepro.net
  4. // @version      1.1
  5. // @description  more appropriately sized text fields for front desk
  6. // @author       Russell Wilkerson
  7. // @match        https://www.hotelservicepro.net/RequestType.aspx?Mode=b&Return=*
  8. // @downloadURL  http://pastebin.com/NruKwyqf
  9. // @grant        none
  10. // ==/UserScript==
  11.  
  12. // v1.0  1-6-2015
  13. // v1.1  1-7-2015 generalized match url, pastebin update
  14.  
  15. var descriptionlines = document.getElementById("ctl00_ContentPlaceHolder1_FormViewRequestType_TextBox4");
  16. descriptionlines.rows = "1";
  17.  
  18. var commentslines = document.getElementById("ctl00_ContentPlaceHolder1_FormViewRequestType_txtEditComments");
  19. commentslines.rows = "8";
  20.  
  21. var noteslines = document.getElementById("ctl00_ContentPlaceHolder1_FormViewRequestType_txtEditNotes");
  22. noteslines.rows = "8";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement