From f952690dd159f164d7ef09bdc2c5201bc86cc9c9 Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Sun, 7 Dec 2014 13:03:34 +0100 Subject: [PATCH] added parameters for mode and status --- js/uhr.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/js/uhr.js b/js/uhr.js index 17690b2..0eaf5a7 100644 --- a/js/uhr.js +++ b/js/uhr.js @@ -153,6 +153,14 @@ this.options.theme = value; this.options.force = true; break; + case 'm': + this.options.mode = value; + this.options.force = true; + break; + case 's': + this.options.status = value; + this.options.force = true; + break; } }.bind(this)); }