Skip to content
This repository was archived by the owner on Jan 31, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/src/dialog/dialogs/crash.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="butter-logo"></div>
<div class="butter-dialog-offset">
<div class="butter-dialog-title">Popcorn Maker encountered an error<span class="icon icon-info-sign"></span>
<p id="report" class="dialog-info dialog-hidden dialog-scrollable"></p>
<p id="report" class="dialog-hidden dialog-scrollable"></p>
</div>
</div>
<div class="butter-form">
Expand Down
2 changes: 1 addition & 1 deletion public/src/dialog/dialogs/crash.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ define( [ "text!dialog/dialogs/crash.html", "dialog/dialog", "util/lang" ],

var rootElement = dialog.rootElement,
reportTextArea = rootElement.querySelector( "#report" ),
dialogInfo = rootElement.querySelector( ".dialog-info" ),
dialogInfo = rootElement.querySelector( ".dialog-hidden" ),
infoBtn = rootElement.querySelector( ".icon-info-sign" ),
commentsTextArea = rootElement.querySelector( "#comments" ),
noBtn = rootElement.querySelector( "#no" ),
Expand Down
2 changes: 1 addition & 1 deletion public/src/dialog/dialogs/feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="butter-logo"></div>
<div class="butter-dialog-offset">
<div class="butter-dialog-title">Feedback<span class="icon icon-info-sign"></span>
<p class="dialog-info dialog-hidden">You can send feedback about bugs, suggestions, or ideas you have for new projects.</p>
<p class="dialog-hidden">You can send feedback about bugs, suggestions, or ideas you have for new projects.</p>
</div>
</div>
<div class="butter-form">
Expand Down
2 changes: 1 addition & 1 deletion public/src/dialog/dialogs/feedback.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ define( [ "text!dialog/dialogs/feedback.html", "dialog/dialog", "util/xhr" ],
var rootElement = dialog.rootElement,
updateBtn = rootElement.querySelector( ".update" ),
infoBtn = rootElement.querySelector( ".icon-info-sign" ),
dialogInfo = rootElement.querySelector( ".dialog-info" ),
dialogInfo = rootElement.querySelector( ".dialog-hidden" ),
browserSpan = rootElement.querySelector( "#browser" ),
browserInfo = navigator.userAgent,
dateSpan = rootElement.querySelector( "#date" ),
Expand Down