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.modern.js
CHANGED
@@ -434,7 +434,7 @@ var save_and_exit = "저장 및 종료";
|
|
434
434
|
var update_exam = "시험 업데이트";
|
435
435
|
var create_exam = "새 시험 만들기";
|
436
436
|
var enter_title = "시험 제목을 입력하세요";
|
437
|
-
var select_placeholder = "
|
437
|
+
var select_placeholder = "선택...";
|
438
438
|
var view_exam = "시험 보기";
|
439
439
|
var back = "뒤로 가기";
|
440
440
|
var edit = "편집하기";
|
@@ -4771,7 +4771,7 @@ var timeSpanToLocalMoment = function timeSpanToLocalMoment(time, date) {
|
|
4771
4771
|
var startOfDay = moment.utc(date).startOf("day");
|
4772
4772
|
var dateTime = date ? startOfDay.add(totalSeconds, "seconds") : moment().startOf("day");
|
4773
4773
|
if (date && dateTime.isBefore(moment.utc(date))) dateTime = dateTime.add(1, "day");
|
4774
|
-
return dateTime;
|
4774
|
+
return dateTime.local();
|
4775
4775
|
};
|
4776
4776
|
var convertHHMMSStoSeconds = function convertHHMMSStoSeconds(time) {
|
4777
4777
|
var times = time.split(":");
|