mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
1be43911b4
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
18 lines
421 B
JavaScript
18 lines
421 B
JavaScript
import App from '../base'
|
|
App.controller(
|
|
'ImportingController',
|
|
function ($interval, $scope, $timeout, $window) {
|
|
$interval(function () {
|
|
$scope.state.load_progress += 5
|
|
if ($scope.state.load_progress > 100) {
|
|
$scope.state.load_progress = 20
|
|
}
|
|
}, 500)
|
|
$timeout(function () {
|
|
$window.location.reload()
|
|
}, 5000)
|
|
$scope.state = {
|
|
load_progress: 20,
|
|
}
|
|
}
|
|
)
|