Timout Dialog Disabler for Sakai

A quick tweak of Sakai

目前为 2015-10-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         Timout Dialog Disabler for Sakai
// @version      0.3
// @description  A quick tweak of Sakai
// @author       Luke Lazurite
// @match        http://sakai.umji.sjtu.edu.cn/*
// @grant        none
// @namespace https://greasyfork.org/users/18585
// ==/UserScript==

(function () {
    if(portal !== undefined && portal !== null) {
        portal.timeoutDialog = false;
    }
    else {
        setTimeout(this, 1000);
    }
})();