-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
203 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<md-dialog aria-label="{{ title }}"> | ||
<form> | ||
<md-toolbar> | ||
<div class="md-toolbar-tools"> | ||
<h2>{{ title }}</h2> | ||
<span flex></span> | ||
<md-button class="md-icon-button" ng-click="cancel()"> | ||
<md-icon aria-label="Close dialog">close</md-icon> | ||
</md-button> | ||
</div> | ||
</md-toolbar> | ||
<md-dialog-content> | ||
<div> | ||
<p ng-bind-html="message"></p> | ||
</div> | ||
</md-dialog-content> | ||
<div class="md-actions" layout="row"> | ||
<span flex></span> | ||
<md-button ng-click="openLogs()"> | ||
Open send logs dialog | ||
</md-button> | ||
<md-button ng-click="cancel()" style="margin-right:20px;" > | ||
Got it! | ||
</md-button> | ||
</div> | ||
</form> | ||
</md-dialog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<md-dialog aria-label="Send logs to aof.gg"> | ||
<form> | ||
<md-toolbar> | ||
<div class="md-toolbar-tools"> | ||
<h2>Send logs to aof.gg</h2> | ||
<span flex></span> | ||
<md-button class="md-icon-button" ng-click="cancel()"> | ||
<md-icon aria-label="Close dialog">close</md-icon> | ||
</md-button> | ||
</div> | ||
</md-toolbar> | ||
<md-dialog-content> | ||
<div> | ||
<p> | ||
Sending us your logs will help to find out what went wrong.<br> | ||
Please use this function immediately after an error occured since we only send the log file of the current session. | ||
</p> | ||
<label for="logEmail">Email</label><br /> | ||
<input type="text" id="logEmail" ng-model="logEmail" /><br /> | ||
<label for="logComment">Comment</label><br /> | ||
<textarea id="logComment" ng-model="logComment" style="width:100%; height: 100px;"></textarea> | ||
|
||
</div> | ||
</md-dialog-content> | ||
<div class="md-actions" layout="row"> | ||
<span flex></span> | ||
<md-button ng-click="cancel()" > | ||
Cancel | ||
</md-button> | ||
<md-button ng-click="send(logEmail, logComment)" style="margin-right:20px;" > | ||
Send logs | ||
</md-button> | ||
</div> | ||
</form> | ||
</md-dialog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.