NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Seguimiento de Pruebas de Alto Nivel
// @namespace http://zengarden/zm/o/tools/zenmeeting
// @version 1.0.0.20181031
// @description Convoca una reunión de seguimiento de Pruebas de Alto Nivel
// @author Daniel Garcia <daniel@zennio.com>
// @match http://zengarden/zm/*/tools/zenmeeting/index.php
// @grant none
// @license MIT
// ==/UserScript==
// require https://code.jquery.com/jquery-3.3.1.min.js
var $ = window.jQuery;
function crearBoton() {
var btn_seguimiento = $('<div/>').attr({id: 'btn_seguimiento', class: 'btn-boton azul', name: 'btn_seguimiento'}).text('Seguimiento')
.on('click', () => {
$('#titulo').val('Seguimiento de Pruebas de Alto Nivel');
$('#contenido').val('Os convoco a una reunión de seguimiento de los proyectos de Pruebas de Alto Nivel.\nSe adjuntará el orden del día a lo largo de la mañana.');
$('#check_depto_55').click();
window.setTimeout( () => { $('#check_depto_55').click(); }, 300);
});
$('#cabAcciones').prepend(btn_seguimiento);
}
(function() {
'use strict';
crearBoton();
})();