ModuleHider

hides empty modules in the uspace overview

目前為 2018-02-03 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        ModuleHider
// @namespace   hem
// @description hides empty modules in the uspace overview
// @match       https://uspace.univie.ac.at/web/studierende/pruefungspass*
// @include     https://uspace.univie.ac.at/de/web/studierende/pruefungspass*
// @include     https://uspace.univie.ac.at/en/web/studierende/pruefungspass*
// @author      oerpli
// @version     1.2
// @grant       none
// ==/UserScript==

(function () {
	'use strict';

	String.prototype.contains = function (it) { return this.indexOf(it) != -1; };
	//var textS = $('#language_selection_dropdown').text().contains('DE')?'Leere Module einblenden':'Show empty modules';

	var textH = $('#language_selection_dropdown').text().contains('DE') ? 'Leere Module ausblenden' : 'Hide empty modules';
	var emptyM = true;
	$('.nav-pills').append('<li id=\'switchB\'><a href=\'#\' id=\'sBT\'>' + textH + '</a></li>');
	$('#switchB').toggle('highlight').toggle('highlight');
	$('#switchB').click(function () {
		var eelems = $('.red').parent().parent().parent().parent();
		if (emptyM) {
			$('#sBT').html($(this).html().replace('aus', 'ein').replace('Hide', 'Show'));
			eelems.hide();
		} else {
			$('#sBT').html($(this).html().replace('ein', 'aus').replace('Show', 'Hide'));
			eelems.show();
		}
		emptyM = !emptyM;
	});
})();