Skip to content

Commit

Permalink
Removed one-time mouse coordinate warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Helioviewer-Kirill committed Aug 7, 2018
1 parent d8fb7f5 commit 7276141
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Media/MovieManagerUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ var MovieManagerUI = MediaManagerUI.extend(
"<tr><td><b>Dimensions:</b></td><td>" + width +
"x" + height +
" px</td></tr>" +
"<tr><td>Control + Click to Copy Link to Movie</td></tr>" +
"<tr><td><b><i>Control + Click</i>:</b></td><td><i>Copy Link to Movie</i></td></tr>" +
"</table>";

return html;
Expand Down
2 changes: 2 additions & 0 deletions resources/js/Viewport/Helper/MouseCoordinates.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,11 @@ var MouseCoordinates = Class.extend(
_checkWarning: function () {
// Warn once
if (this.warnMouseCoords === true) {
/*
var warning = "<b>Note:</b> Mouse coordinates should not be used " +
"for operations.";
$(document).trigger("message-console-log", [warning, {"sticky": false, "life": 1000}]);
*/
Helioviewer.userSettings.set("notifications.coordinates", false);
this.warnMouseCoords = false;
}
Expand Down

0 comments on commit 7276141

Please sign in to comment.