This file contains hidden or 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
| var chatButton = $("ul.segmented_tabs li a").first(); | |
| $("<li><a class='CommandsToggle'>Commands</a><a class='ChatToggle'>Talk</a></li>").insertAfter(chatButton); | |
| chatButton.css("width", chatButton.width() - 71); | |
| $(".CommandsToggle").click(function () { | |
| "use strict"; | |
| $("a.CommandsToggle").toggleClass("selected"); | |
| if ($(".commandsHideCSS").length !== 0) { | |
| $(".commandsHideCSS").remove() | |
| } else { | |
| $("<style type='text/css' class='commandsHideCSS'>#chat_line_list li.cSpam{display:inline;}</style>").appendTo("head") |
This file contains hidden or 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
| <!doctype html> | |
| <html> | |
| <head> | |
| <!-- Run in full-screen mode. --> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <!-- Make the status bar black with white text. --> | |
| <meta name="apple-mobile-web-app-status-bar-style" content="black"> |
This file contains hidden or 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
| var gtmPageLoad = (function (window) {})(window); |
This file contains hidden or 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
| var jq = document.createElement('script'); | |
| jq.src = '//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'; | |
| document.getElementsByTagName('head')[0].appendChild(jq); | |
| var b, engine; | |
| jq.onload = function () { | |
| var ballscript = document.createElement('script'); | |
| ballscript.src = 'https://rawgit.com/austinpray/pro-grid-utils/master/ball_mod.js'; | |
| document.getElementsByTagName('head')[0].appendChild(ballscript); | |
| ballscript.onload = function () { | |
| b = new ball(); |
This file contains hidden or 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
| convert test*.png -resize 595x842 -gravity center -background white \ | |
| -extent 595x842 jason.pdf |
This file contains hidden or 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
| function getPresentationTitle() { | |
| var metas = document.getElementsByTagName('meta'); | |
| for (i=0; i<metas.length; i++) { | |
| if (metas[i].getAttribute("name") === "og:title") { | |
| return metas[i].getAttribute("content"); | |
| } | |
| } | |
| return ""; | |
| } |
This file contains hidden or 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
| function () { | |
| var subjectDropdown = document.getElementsByName('recipient_email')[0]; | |
| return subjectDropdown.options[subjectDropdown.options.selectedIndex].text | |
| } |
This file contains hidden or 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
| function () { | |
| var searchEl = typeof document.querySelector !== 'undefined' ? document.querySelector('#search [name="keywords"]') : document.getElementsByName('keywords')[0]; | |
| return searchEl.value; | |
| } |
This file contains hidden or 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
| { | |
| "districts": [ | |
| { | |
| "objectType": "district", | |
| "code": "RISD", | |
| "alert": false, | |
| "servers": [ | |
| { | |
| "objectType": "server", | |
| "errors": 999, |
This file contains hidden or 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
| server { | |
| set $site_name birdforestry.com; | |
| listen *:80; | |
| server_name 162.243.214.186 staging.birdforestry.com; | |
| access_log /srv/www/birdforestry.com/logs/birdforestry.com.access.log; | |
| error_log /srv/www/birdforestry.com/logs/birdforestry.com.error.log; | |
| root /srv/www/birdforestry.com/current/web; | |
| index index.php; |