mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-20 04:14:04 +00:00
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
import App from '../base'
|
|
App.directive('autoSubmitForm', function () {
|
|
return {
|
|
link(scope, element) {
|
|
element.submit() // Runs on load
|
|
}
|
|
}
|
|
})
|