From 708b7251b6231d04cc3b32340d6951f691bbed49 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 25 May 2017 10:56:30 +0300 Subject: [PATCH] chore(index) add ";" --- client/dom/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/dom/index.js b/client/dom/index.js index 72220be5..27b228e5 100644 --- a/client/dom/index.js +++ b/client/dom/index.js @@ -246,8 +246,9 @@ function CmdProto() { this.getCurrentDate = (currentFile) => { const current = currentFile || Cmd.getCurrentFile(); - const date = DOM.getByDataName('js-date', current) - .textContent + const date = DOM + .getByDataName('js-date', current) + .textContent; return date; };