Skip to content
This repository was archived by the owner on Aug 11, 2021. It is now read-only.

Commit b424f5b

Browse files
committed
known issues
1 parent fb3d6d0 commit b424f5b

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
official plugin page
22

3-
https://www.construct.net/en/forum/extending-construct-2/addons-29/plugin-sweet-alert-ii-130224
3+
https://www.construct.net/en/forum/extending-construct-2/addons-29/plugin-sweet-alert-ii-130224
4+
5+
6+
Known issues
7+
- not working radio array loop at c3runtime when minify.
8+
9+

ported_plugins/plugins/sweet alert 2/source/c3runtime/actions.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@
191191
["input"]: 'radio',
192192
["inputOptions"]: inputOptions,
193193
/////////////////////////////////////
194-
["background"]: self.style["background"],
195-
["color"]: self.style["color"],
196-
["position"]: self.style["position"],
197-
["width"]: self.style["width"],
194+
["background"]: self["style"]["background"],
195+
["color"]: self["style"]["color"],
196+
["position"]: self["style"]["position"],
197+
["width"]: self["style"]["width"],
198198
/////////////////////////////////////
199199
["buttonsStyling"]: true,
200200
["focusConfirm"]: false,
@@ -203,9 +203,9 @@
203203
["showConfirmButton"]: (confirm_),
204204
["cancelButtonText"]: cancel_,
205205
["showCancelButton"]: (cancel_),
206-
["confirmButtonColor"]: self.style["confirm"],
207-
["cancelButtonColor"]: self.style["cancel"],
208-
["reverseButtons"]: self.style["reverse"],
206+
["confirmButtonColor"]: self["style"]["confirm"],
207+
["cancelButtonColor"]: self["style"]["cancel"],
208+
["reverseButtons"]: self["style"]["reverse"],
209209
/////////////////////////////////////
210210
["allowEscapeKey"]: allow_escapekey_,
211211
["allowOutsideClick"]: allow_outsideclick_,

0 commit comments

Comments
 (0)