Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name MantisQuickResponse
// @namespace http://tampermonkey.net/
// @updateURL https://gist.github.com/CEBracco/afa642b9d67bf41ec8cfe313562c0e80/raw/MantisQuickResponse.user.js
// @version 1.1
// @description Respuestas rápidas para mantis :D
// @author cbracco
// @match https://incidencias.cespi.unlp.edu.ar/bug_change_status_page.php
// @grant none
// @require https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.min.js
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts,
that detects and handles AJAXed content.
Usage example:
waitForKeyElements (
"div.comments"
, commentCallbackFunction
);