HideEmptyModules

hides empty modules in the uspace overview

As of 23.09.2016. See апошняя версія.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        HideEmptyModules
// @namespace   hem
// @description hides empty modules in the uspace overview
// @include     https://uspace.univie.ac.at/web/studierende/pruefungspass*
// @author      oerpli
// @version     1.1
// @grant       none
// ==/UserScript==
String.prototype.contains = function(it) { return this.indexOf(it) != -1; };
var textH = $('#language_selection_dropdown').text().contains('DE')?'Leere Module ausblenden':'Hide empty modules';
//var textS = $('#language_selection_dropdown').text().contains('DE')?'Leere Module einblenden':'Show 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 = $('.ectsLabel').parent().filter(function () {
    return $(this).html().startsWith('0/');
  }).parent().parent().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
});