overleaf/services/web/frontend/js/main/importing.js
Alasdair Smith 8f5270899f Merge pull request #2707 from overleaf/as-transform-esm
Transform frontend module format from AMD to ESM

GitOrigin-RevId: 9adbcdc95e819a54114010c6fd3521d8f58ef2fe
2020-05-20 03:21:38 +00:00

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
}
})