tmcnab/Hyperglot

View on GitHub
js/Views/NotesView.js

Summary

Maintainability
A
0 mins
Test Coverage
(function() {

    try {
        Menu.title('Project Notes');
        Menu.message('');

        var opts = {
            autofocus: true,
            lineNumbers: true
        };

        var cm = CodeMirror(document.getElementById('notesEditor'), opts);
        Menu.close();
    } catch (ex) {
        console.error(ex);
    }
})();