-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (57 loc) · 2.64 KB
/
index.html
File metadata and controls
60 lines (57 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AirFlow</title>
<meta name="description" content="AirFlow is a web application that helps you visualise and optimise your computers air cooling.">
<link href='http://fonts.googleapis.com/css?family=Oswald:700,400' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css'>
<link href="css/index.css" rel="stylesheet"/>
<link rel="icon" href="/images/favicon.png">
<script src="js/build.js"></script>
<script src="js/external/stats.min.js"></script>
</head>
<body ng-app="AirFlowApp" role="main">
<div class="main" ng-controller="MainController">
<div id="loadingSplash" ng-click="hideSplash()" role="presentation">
<img src="/images/logo_icon.svg" alt="AirFlow logo" id="loadingSplashIcon">
<h1 id="loadingSplashLogoText" role="heading">AIRFLOW</h1>
<p id="loadingSplashLoadingText">Loading...</p>
</div>
<div id="tabbedPaneContainer">
<tabs role="tabpanel">
<tab heading="Settings" role="tablist">
<div id="projectButtonsWrapper">
<button ng-click="newProject()" role="button">New project</button>
<button ng-click="saveProject()" role="button">Save</button>
<!--<button ng-click="loadProject()" role="button">Load</button>-->
<label for="projectLoadInput" id="projectLoadInputLabel">Load</label>
<input id="projectLoadInput" ng-model="loadedFile" onchange="angular.element(this).scope().notifyProjectLoad(this)" type="file" accept=".json"></input>
</div>
<project-Details></project-Details>
<!--<environment-Settings></environment-Settings>-->
<component-Settings></component-Settings>
<div id="fanButtonsWrapper">
<div class="fanButtonWrapper">
<button ng-click="addNewFan()" ng-disabled="addingFan" role="button"><img src="/images/fan_icon_add_active.png" alt="Add Fan"></button>
</div>
<div class="fanButtonWrapper">
<button ng-click="deleteFan()" id="deleteFanBtn" ng-disabled="!editFan || overrideCompSettings || fans.length <= 1" role="button"><img src="/images/fan_icon_delete_active.png" alt="Delete Fan"></button>
</div>
</div>
<div id="cancelAddFanButton">
<button ng-click="cancelAddingFan()" ng-disabled="!addingFan" role="button">Cancel adding fan</button>
</div>
</tab>
<tab heading="Results" role="tablist">
<results-Panel></results-Panel>
</tab>
</tabs>
</div>
<div id="simulationContainer" role="application">
<simulation></simulation>
</div>
<help-Box></help-Box>
</div>
</body>
</html>