Welcome to mirror list, hosted at ThFree Co, Russian Federation.

editor_file_template_ext.js « editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 343908b831d77527124a054c13d64d7282ea39f6 (plain)
1
2
3
4
5
6
7
import { Position } from 'monaco-editor';

export default {
  navigateFileStart() {
    this.setPosition(new Position(1, 1));
  },
};