touchstudy-core 0.1.117 → 0.1.118
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -433,7 +433,7 @@ var save_and_exit = "저장 및 종료";
|
|
433
433
|
var update_exam = "시험 업데이트";
|
434
434
|
var create_exam = "새 시험 만들기";
|
435
435
|
var enter_title = "시험 제목을 입력하세요";
|
436
|
-
var select_placeholder = "
|
436
|
+
var select_placeholder = "선택...";
|
437
437
|
var view_exam = "시험 보기";
|
438
438
|
var back = "뒤로 가기";
|
439
439
|
var edit = "편집하기";
|
@@ -4762,7 +4762,7 @@ var timeSpanToLocalMoment = function timeSpanToLocalMoment(time, date) {
|
|
4762
4762
|
var startOfDay = moment.utc(date).startOf("day");
|
4763
4763
|
var dateTime = date ? startOfDay.add(totalSeconds, "seconds") : moment().startOf("day");
|
4764
4764
|
if (date && dateTime.isBefore(moment.utc(date))) dateTime = dateTime.add(1, "day");
|
4765
|
-
return dateTime;
|
4765
|
+
return dateTime.local();
|
4766
4766
|
};
|
4767
4767
|
var convertHHMMSStoSeconds = function convertHHMMSStoSeconds(time) {
|
4768
4768
|
var times = time.split(":");
|