回答編集履歴
2
誤字を修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
そういう疑問を持ったら、まずは**FullCalndarの公式ドキュメントを読みましょう**。
|
1
|
+
そういう疑問を持ったら、まずは**FullCalendarの公式ドキュメントを読みましょう**。
|
2
2
|
|
3
3
|
今回だと、`getEventById`のページをGoogle検索などで探し、そこに書いてあるリンクから、返り値の`Event Object`のページに進みます。
|
4
4
|
|
@@ -24,4 +24,4 @@
|
|
24
24
|
|
25
25
|
|
26
26
|
|
27
|
-
すべてのプロパティ(titleを含む)は読み取り専用であることがわかります。プロパティを変更するには、メソッド(`setProp`など)を使わなければいけないことも。
|
27
|
+
すべてのプロパティ(titleを含む)は**読み取り専用**であることがわかります。プロパティを変更するには、メソッド(`setProp`など)を使わなければいけないことも。
|
1
表現を修正
test
CHANGED
@@ -12,9 +12,13 @@
|
|
12
12
|
|
13
13
|
|
14
14
|
|
15
|
+
リストの前:
|
16
|
+
|
15
17
|
> An event object has a number of properties and methods. All properties are read-only and you must use the methods to modify the properties.
|
16
18
|
|
17
19
|
|
20
|
+
|
21
|
+
リストの後:
|
18
22
|
|
19
23
|
> All properties are read-only. If you want to modify them, use the various methods of the Event object, such as setProp, setExtendedProp, setDates, etc.
|
20
24
|
|