diff --git a/index.html b/index.html index f2eacc4..32fb906 100644 --- a/index.html +++ b/index.html @@ -80,114 +80,154 @@ } .cent { position: relative; - top: 4px; - } + top: 4px; + } .taskbar { - background-color: black; - position: absolute; - top: 0; - right: 0; - width: 100%; - height: 42px; - } + background-color: black; + position: absolute; + top: 0; + right: 0; + width: 100%; + } + .taskbarTime { + height: 42px; + float: left; + } + .taskbarApps { + text-align: center; + float: left; + margin-left: 5px; + margin-top: 2px; + } -

DremJS Version 0.1.2b

-

Build 31

+

DremJS Version 0.1.4b

© Innovation Inc.

-

Start

+
+

Shutdown DremJS

+ +

Start

+ +
+
+ +
| +
+
+ +
+
+
- -
-
| -
- - + function maximizeApplication(id) { + document.getElementById(id).setAttribute('style', "height: 92%; width: 99%; top: 42px; left: 0px"); + } // Maximize application + + function minimizeApplication(id) { + var application = document.getElementById(id); + if (application.style.display === "none") { + application.style.display = "block"; + } else { + application.style.display = "none"; + } + } // Minimize application + + function idExists(id) { + if ($('#' + id).length) + return $('#' + id).attr('name'); + else + return false; + } // Check if an ID exists +