diff options
author | Piotr Kosko/Tizen API (PLT) /SRPOL/Engineer/Samsung Electronics <p.kosko@samsung.com> | 2024-03-15 12:52:00 +0100 |
---|---|---|
committer | Piotr Kosko/Tizen API (PLT) /SRPOL/Engineer/Samsung Electronics <p.kosko@samsung.com> | 2024-03-15 12:58:12 +0100 |
commit | 240033e560a5997f52f25dcacff5733a5e8f7ea7 (patch) | |
tree | 272f26edc55248c4de717dcbfc8019d2fa921ff1 | |
parent | 5ed80ebece2175f5717cab64957ce94efad6060f (diff) | |
download | webapi-plugins-240033e560a5997f52f25dcacff5733a5e8f7ea7.tar.gz webapi-plugins-240033e560a5997f52f25dcacff5733a5e8f7ea7.tar.bz2 webapi-plugins-240033e560a5997f52f25dcacff5733a5e8f7ea7.zip |
[Content] Fixed the reconfigurable issueaccepted/tizen/unified/x/20240320.132852accepted/tizen/unified/20240319.154757accepted/tizen/unified/20240319.140954
[Verification] Code compiles. Problem with find method does not appear
anymore.
Change-Id: I577ea7fd30fcb8ef7f34d1f66a2be7b5d5a4048c
-rwxr-xr-x | src/content/js/datatypes.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/content/js/datatypes.js b/src/content/js/datatypes.js index b903415a..46aea3e8 100755 --- a/src/content/js/datatypes.js +++ b/src/content/js/datatypes.js @@ -139,7 +139,8 @@ function Content(data) { return editableAttributes; }, set: function () { }, - enumerable: true + enumerable: true, + configurable: true }, id: { get: function() { @@ -361,7 +362,8 @@ function VideoContent(data) { return editableAttributes; }, set: function () { }, - enumerable: true + enumerable: true, + configurable: true }, geolocation: { get: function() { @@ -729,7 +731,8 @@ function ImageContent(data) { return editableAttributes; }, set: function () { }, - enumerable: true + enumerable: true, + configurable: true }, geolocation: { get: function() { |