diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-05-25 18:40:54 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2016-08-15 20:01:31 +0200 |
| commit | 3d7bfcc9fd23b7f92e549ea89784ecc40660c9e8 (patch) | |
| tree | 9c3263909825102cfe5f07c9bed282e3ae7e3fa0 | |
| parent | be911b2430835e4e0a61ab5f4e3c033130388b72 (diff) | |
| download | wvs-vplan-3d7bfcc9fd23b7f92e549ea89784ecc40660c9e8.tar.gz wvs-vplan-3d7bfcc9fd23b7f92e549ea89784ecc40660c9e8.zip | |
fixe Erkennung von wichtigen AGs
| -rw-r--r-- | js/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/index.js b/js/index.js index 1d98fa2..61cc18d 100644 --- a/js/index.js +++ b/js/index.js @@ -292,7 +292,7 @@ function parseVertretungen(str, username){ res = vertretungsstr.match(vertretungenRe); if(res !== null){ - var klasse = res[1]; + var klasse = res[1].toUpperCase(); var stunde = res[2].replace(/ /g, ''); var entfall = res[3].indexOf('x') > -1; var vertreter = res[4]; @@ -801,4 +801,4 @@ function purge(){ }, fail); }, fail); }, fail); -} +}
\ No newline at end of file |
