1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-15 02:36:36 +00:00
Files
Boostnote/browser/components
lockee14 2b3538d3b1 add indentation and closing brace
missing indentation and brace between line 229 - 234:
before:
'Shift-Cmd-/': function (cm) {
        if (global.process.platform !== 'darwin') { return }
      [translateHotkey(hotkey.insertDateTime)]: function (cm) {
        const dateNow = new Date()
        cm.replaceSelection(dateNow.toLocaleString())
},

after:
'Shift-Cmd-/': function (cm) {
        if (global.process.platform !== 'darwin') { return }
        [translateHotkey(hotkey.insertDateTime)]: function (cm) {
          const dateNow = new Date()
          cm.replaceSelection(dateNow.toLocaleString())
        }
},
2019-09-12 08:30:53 +09:00
..
2019-07-27 12:39:12 +09:00
2019-04-15 10:44:16 +09:00
2018-12-28 14:09:35 +08:00
2018-12-30 20:49:26 +08:00
2018-10-09 10:38:19 +02:00
2019-07-26 11:38:05 +09:00
2019-08-11 23:22:53 +09:00
2017-11-24 17:00:03 +01:00
2019-07-26 11:38:05 +09:00
2018-06-27 13:07:38 +05:00
2018-04-04 21:17:07 +09:00
2018-12-28 14:09:35 +08:00
2018-12-28 14:09:35 +08:00