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
| import os | |
| from typing import Dict | |
| from fastmcp import FastMCP | |
| from dotenv import load_dotenv | |
| import requests | |
| load_dotenv() | |
| # Initialize environment variables | |
| SENTRY_AUTH_TOKEN = os.getenv("SENTRY_AUTH_TOKEN") |
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
| jQuery -> | |
| return false unless $.browser.msie | |
| $("input").each -> | |
| input = $(this) | |
| $(input).val input.attr("placeholder") | |
| $(input).focus -> | |
| input.val "" if input.val() is input.attr("placeholder") | |
| $(input).blur -> |
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
| jQuery -> | |
| return false unless $.browser.msie | |
| $("input").each -> | |
| input = $(this) | |
| $(input).val input.attr("placeholder") | |
| $(input).focus -> | |
| input.val "" if input.val() is input.attr("placeholder") | |
| $(input).blur -> |