mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-16 00:22:05 +00:00
Added tooltip with keyboard shortcut in the recompile button.
This commit is contained in:
parent
d6964feb2f
commit
a9e0185098
2 changed files with 12 additions and 1 deletions
|
@ -1,6 +1,11 @@
|
||||||
div.full-size.pdf(ng-controller="PdfController")
|
div.full-size.pdf(ng-controller="PdfController")
|
||||||
.toolbar.toolbar-tall
|
.toolbar.toolbar-tall
|
||||||
.btn-group(dropdown)
|
.btn-group(
|
||||||
|
dropdown,
|
||||||
|
tooltip="{{modifierKey}} + Enter",
|
||||||
|
tooltip-popup-delay="500"
|
||||||
|
tooltip-append-to-body="true"
|
||||||
|
)
|
||||||
a.btn.btn-info(
|
a.btn.btn-info(
|
||||||
href,
|
href,
|
||||||
ng-disabled="pdf.compiling",
|
ng-disabled="pdf.compiling",
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
define [
|
define [
|
||||||
"base"
|
"base"
|
||||||
|
"ace/ace"
|
||||||
"libs/latex-log-parser"
|
"libs/latex-log-parser"
|
||||||
"libs/bib-log-parser"
|
"libs/bib-log-parser"
|
||||||
], (App, LogParser, BibLogParser) ->
|
], (App, LogParser, BibLogParser) ->
|
||||||
|
@ -13,6 +14,11 @@ define [
|
||||||
$scope.pdf.view = if $scope?.pdf?.url then 'pdf' else 'uncompiled'
|
$scope.pdf.view = if $scope?.pdf?.url then 'pdf' else 'uncompiled'
|
||||||
$scope.shouldShowLogs = false
|
$scope.shouldShowLogs = false
|
||||||
|
|
||||||
|
if ace.require("ace/lib/useragent").isMac
|
||||||
|
$scope.modifierKey = "Cmd"
|
||||||
|
else
|
||||||
|
$scope.modifierKey = "Ctrl"
|
||||||
|
|
||||||
$scope.$on "project:joined", () ->
|
$scope.$on "project:joined", () ->
|
||||||
return if !autoCompile
|
return if !autoCompile
|
||||||
autoCompile = false
|
autoCompile = false
|
||||||
|
|
Loading…
Reference in a new issue