mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
35 lines
No EOL
968 B
CoffeeScript
35 lines
No EOL
968 B
CoffeeScript
define [
|
|
"base"
|
|
], (App) ->
|
|
App.controller "FeatureOnboardingController", ($scope, settings, event_tracking) ->
|
|
$scope.onboarding =
|
|
innerStep: 1
|
|
nSteps: 4
|
|
|
|
$scope.$watch "project.features.trackChangesVisible", (visible) ->
|
|
return if !visible?
|
|
$scope.showCollabFeaturesOnboarding = window.showTrackChangesOnboarding and visible
|
|
|
|
$scope.dismiss = () ->
|
|
event_tracking.sendMB "shown-track-changes-onboarding"
|
|
$scope.showCollabFeaturesOnboarding = false
|
|
|
|
$scope.gotoPrevStep = () ->
|
|
if $scope.onboarding.innerStep > 1
|
|
$scope.onboarding.innerStep--;
|
|
|
|
$scope.gotoNextStep = () ->
|
|
if $scope.onboarding.innerStep < 4
|
|
$scope.onboarding.innerStep++;
|
|
|
|
# handleKeypress = (e) ->
|
|
# if e.keyCode == 13
|
|
# if $scope.innerStep == 1
|
|
# $scope.turnCodeCheckOn()
|
|
# else
|
|
# $scope.dismiss()
|
|
|
|
# $(document).on "keypress", handleKeypress
|
|
|
|
# $scope.$on "$destroy", () ->
|
|
# $(document).off "keypress", handleKeypress |