rsf_main.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. This program is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or
  5. (at your option) any later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. if(document.location.href.indexOf("rsf.org") != -1){
  14. console.log("rsf_main.js");
  15. function broken_page(){
  16. if(document.getElementsByClassName("col-md-4 petition-wrap")[0] === undefined){
  17. return 0;
  18. }
  19. var iframe_src = document.getElementsByTagName("iframe")[0].src.replace(/[\s\S]+%20/g,"");
  20. document.getElementsByClassName("col-md-4 petition-wrap")[0].insertAdjacentHTML("afterbegin",'<h2 style="background-color: #00ffff;"><a href="'+iframe_src+'">Click here to sign the petition</a><h2>');
  21. document.getElementsByTagName("iframe")[0].remove();
  22. }
  23. function petition_page(){
  24. document.getElementsByTagName("form")[0].insertAdjacentHTML("beforeend",document.getElementById("ajax-view-state-page-container").innerHTML);
  25. console.log("inserted info");
  26. }
  27. if(document.location.href.match("rsf.secure.force.com/petition") !== null){
  28. console.log("petition");// the page in the iframe
  29. petition_page();
  30. } else{
  31. console.log("other page");
  32. broken_page();// the one with the iframe that is a 404
  33. }
  34. }