mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
8f5270899f
Transform frontend module format from AMD to ESM GitOrigin-RevId: 9adbcdc95e819a54114010c6fd3521d8f58ef2fe
20 lines
395 B
JavaScript
20 lines
395 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
|
|
}
|
|
})
|