Some cosmetic changes. Fade out of button after asking a question, some margin to avoid interference of the button with scrollbars, reduced timeframe upon appearance and changed modal window description text.
This commit is contained in:
@ -13,7 +13,7 @@ $(function() {
|
|||||||
var THEME = 'ace/theme/textmate';
|
var THEME = 'ace/theme/textmate';
|
||||||
var REMEMBER_TAB = false;
|
var REMEMBER_TAB = false;
|
||||||
var AUTOSAVE_INTERVAL = 15 * 1000;
|
var AUTOSAVE_INTERVAL = 15 * 1000;
|
||||||
var REQUEST_FOR_COMMENTS_DELAY = 5 * 60 * 1000;
|
var REQUEST_FOR_COMMENTS_DELAY = 3 * 60 * 1000;
|
||||||
var NONE = 0;
|
var NONE = 0;
|
||||||
var WEBSOCKET = 1;
|
var WEBSOCKET = 1;
|
||||||
var SERVER_SEND_EVENT = 2;
|
var SERVER_SEND_EVENT = 2;
|
||||||
@ -1171,6 +1171,8 @@ $(function() {
|
|||||||
}).error(ajaxError);
|
}).error(ajaxError);
|
||||||
|
|
||||||
$('#comment-modal').modal('hide');
|
$('#comment-modal').modal('hide');
|
||||||
|
var button = $('#requestCommentsButton');
|
||||||
|
button.fadeOut();
|
||||||
}
|
}
|
||||||
|
|
||||||
var initializeCodePilot = function() {
|
var initializeCodePilot = function() {
|
||||||
|
@ -92,5 +92,6 @@ button i.fa-spin {
|
|||||||
#requestCommentsButton {
|
#requestCommentsButton {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-top: -50px;
|
margin-top: -50px;
|
||||||
|
margin-right: 25px;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
@ -248,7 +248,7 @@ de:
|
|||||||
removeAllOnLine: Meine Kommentare auf dieser Zeile löschen
|
removeAllOnLine: Meine Kommentare auf dieser Zeile löschen
|
||||||
listing: Die neuesten Kommentaranfragen
|
listing: Die neuesten Kommentaranfragen
|
||||||
request: "Kommentaranfrage stellen"
|
request: "Kommentaranfrage stellen"
|
||||||
question: "Was ist Ihre Frage? (optional)"
|
question: "Bitte beschreiben Sie kurz ihre Problem oder nennen Sie den Programmteil, zu dem sie Feedback wünschen."
|
||||||
index:
|
index:
|
||||||
clone: Duplizieren
|
clone: Duplizieren
|
||||||
implement: Implementieren
|
implement: Implementieren
|
||||||
|
@ -248,7 +248,7 @@ en:
|
|||||||
removeAllOnLine: Remove my comments on this line
|
removeAllOnLine: Remove my comments on this line
|
||||||
listing: Listing the newest comment requests
|
listing: Listing the newest comment requests
|
||||||
request: "Request Comments"
|
request: "Request Comments"
|
||||||
question: "What is your question? (optional)"
|
question: "Please shortly describe your problem or the program part you would like to get feedback for."
|
||||||
index:
|
index:
|
||||||
clone: Duplicate
|
clone: Duplicate
|
||||||
implement: Implement
|
implement: Implement
|
||||||
|
Reference in New Issue
Block a user