diff options
| author | PliablePixels <pliablepixels@gmail.com> | 2015-06-04 11:31:09 -0400 |
|---|---|---|
| committer | PliablePixels <pliablepixels@gmail.com> | 2015-06-04 11:31:09 -0400 |
| commit | c76e9d5c78e0cd48f938218dc97fb67e7bcac51d (patch) | |
| tree | 78832a6e30e9c41b48e51bf9b4690884d5c67f9d /www/templates/devoptions.html | |
| parent | 21bc78c65d0a8b852e88f3e464b4d6fcf2bc96fd (diff) | |
Created new screen for developer options, removed simulation mode (its practically useless)
Diffstat (limited to 'www/templates/devoptions.html')
| -rw-r--r-- | www/templates/devoptions.html | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/www/templates/devoptions.html b/www/templates/devoptions.html new file mode 100644 index 00000000..95c6d4e3 --- /dev/null +++ b/www/templates/devoptions.html @@ -0,0 +1,39 @@ +<ion-view view-title="Developer Settings"> + + <ion-nav-buttons side="left"> + <button class="button button-icon button-clear ion-navicon" ng-click="openMenu()"></button> + </ion-nav-buttons> + + + <ion-content class="padding"> + <div class="list list-inset"> + + <span style="color:rgb(100,100,100)"><i class="ion-android-settings" style="font-size:150%"></i> Developer Options</span> + + <!-- <ion-toggle ng-model="loginData.simulationMode" ng-checked={{loginData.simulationMode}} toggle-class="toggle-energized">Simulation Mode</ion-toggle>--> + + <div class="item item-input-inset"> + + Max Monitors in Montage + <label class="item-input-wrapper"> + <input type="tel" placeholder="be careful" ng-model="loginData.maxMontage"> + </label> + + </div> + + <div class="item item-input-inset"> + + Max FPS for streaming + <label class="item-input-wrapper"> + <input type="tel" placeholder="max is 30" ng-model="loginData.maxFPS"> + </label> + + </div> + + + + <button class="button button-block button-balanced icon ion-locked" ng-click="saveDevOptions()"> Save</button> + + + </ion-content> +</ion-view> |
