How Can I Fix this Array with Object Properties
In trying to debug a JavaScript file in IE8, I got an "Expected identifier, string or number." I thought it might be an extra comma or that I need to put my object properties in quotes (I tried putting them in both double in single quotes), but I still get the "Expected identifier, string or number" error:
define([
'jquery',
'underscore',
'jquery/ui',
'Magento_Ui/js/modal/modal',
'mage/translate'
], function ($, _) {
'use strict';
$.widget('mage.confirm', $.mage.modal, {
options: {
modalClass: 'confirm',
title: '',
focus: '.action-accept',
actions: {
/**
* Callback always - called on all actions.
*/
always: function () {},
/**
* Callback confirm.
*/
confirm: function () {},
/**
* Callback cancel.
*/
cancel: function () {}
},
buttons: [{
text: $.mage.__('Cancel'),
class: 'action-secondary action-dismiss',
/**
* Click handler.
*/
click: function (event) {
this.closeModal(event);
}
}, {
text: $.mage.__('OK'),
class: 'action-primary action-accept',
/**
* Click handler.
*/
click: function (event) {
this.closeModal(event, true);
}
}]
},
/**
* Create widget.
*/
_create: function () {
this._super();
this.modal.find(this.options.modalCloseBtn).off().on('click', _.bind(this.closeModal, this));
this.openModal();
},
/**
* Remove modal window.
*/
_remove: function () {
this.modal.remove();
},
/**
* Open modal window.
*/
openModal: function () {
return this._super();
},
/**
* Close modal window.
*/
closeModal: function (event, result) {
result = result || false;
if (result) {
this.options.actions.confirm(event);
} else {
this.options.actions.cancel(event);
}
this.options.actions.always(event);
this.element.bind('confirmclosed', _.bind(this._remove, this));
return this._super();
}
});
return function (config) {
return $('<div></div>').html(config.content).confirm(config);
};
});
javascript debugging internet-explorer-8
|
show 4 more comments
In trying to debug a JavaScript file in IE8, I got an "Expected identifier, string or number." I thought it might be an extra comma or that I need to put my object properties in quotes (I tried putting them in both double in single quotes), but I still get the "Expected identifier, string or number" error:
define([
'jquery',
'underscore',
'jquery/ui',
'Magento_Ui/js/modal/modal',
'mage/translate'
], function ($, _) {
'use strict';
$.widget('mage.confirm', $.mage.modal, {
options: {
modalClass: 'confirm',
title: '',
focus: '.action-accept',
actions: {
/**
* Callback always - called on all actions.
*/
always: function () {},
/**
* Callback confirm.
*/
confirm: function () {},
/**
* Callback cancel.
*/
cancel: function () {}
},
buttons: [{
text: $.mage.__('Cancel'),
class: 'action-secondary action-dismiss',
/**
* Click handler.
*/
click: function (event) {
this.closeModal(event);
}
}, {
text: $.mage.__('OK'),
class: 'action-primary action-accept',
/**
* Click handler.
*/
click: function (event) {
this.closeModal(event, true);
}
}]
},
/**
* Create widget.
*/
_create: function () {
this._super();
this.modal.find(this.options.modalCloseBtn).off().on('click', _.bind(this.closeModal, this));
this.openModal();
},
/**
* Remove modal window.
*/
_remove: function () {
this.modal.remove();
},
/**
* Open modal window.
*/
openModal: function () {
return this._super();
},
/**
* Close modal window.
*/
closeModal: function (event, result) {
result = result || false;
if (result) {
this.options.actions.confirm(event);
} else {
this.options.actions.cancel(event);
}
this.options.actions.always(event);
this.element.bind('confirmclosed', _.bind(this._remove, this));
return this._super();
}
});
return function (config) {
return $('<div></div>').html(config.content).confirm(config);
};
});
javascript debugging internet-explorer-8
1
Can you show your Error in Console?
– Banujan Balendrakumar
Nov 20 '18 at 18:18
1
On which line do you get that error?
– Bergi
Nov 20 '18 at 18:19
Before your edited your question theclass
word was not wrapped with single-quote. Is this the case?
– Dekel
Nov 20 '18 at 18:21
Can you post the whole file, please?buttons:
appears to be a property of something larger, which might as well contribute to the issue.
– Bergi
Nov 20 '18 at 18:21
1
@GTSJoe did you try to changeclass
to'class'
?
– Dekel
Nov 20 '18 at 18:40
|
show 4 more comments
In trying to debug a JavaScript file in IE8, I got an "Expected identifier, string or number." I thought it might be an extra comma or that I need to put my object properties in quotes (I tried putting them in both double in single quotes), but I still get the "Expected identifier, string or number" error:
define([
'jquery',
'underscore',
'jquery/ui',
'Magento_Ui/js/modal/modal',
'mage/translate'
], function ($, _) {
'use strict';
$.widget('mage.confirm', $.mage.modal, {
options: {
modalClass: 'confirm',
title: '',
focus: '.action-accept',
actions: {
/**
* Callback always - called on all actions.
*/
always: function () {},
/**
* Callback confirm.
*/
confirm: function () {},
/**
* Callback cancel.
*/
cancel: function () {}
},
buttons: [{
text: $.mage.__('Cancel'),
class: 'action-secondary action-dismiss',
/**
* Click handler.
*/
click: function (event) {
this.closeModal(event);
}
}, {
text: $.mage.__('OK'),
class: 'action-primary action-accept',
/**
* Click handler.
*/
click: function (event) {
this.closeModal(event, true);
}
}]
},
/**
* Create widget.
*/
_create: function () {
this._super();
this.modal.find(this.options.modalCloseBtn).off().on('click', _.bind(this.closeModal, this));
this.openModal();
},
/**
* Remove modal window.
*/
_remove: function () {
this.modal.remove();
},
/**
* Open modal window.
*/
openModal: function () {
return this._super();
},
/**
* Close modal window.
*/
closeModal: function (event, result) {
result = result || false;
if (result) {
this.options.actions.confirm(event);
} else {
this.options.actions.cancel(event);
}
this.options.actions.always(event);
this.element.bind('confirmclosed', _.bind(this._remove, this));
return this._super();
}
});
return function (config) {
return $('<div></div>').html(config.content).confirm(config);
};
});
javascript debugging internet-explorer-8
In trying to debug a JavaScript file in IE8, I got an "Expected identifier, string or number." I thought it might be an extra comma or that I need to put my object properties in quotes (I tried putting them in both double in single quotes), but I still get the "Expected identifier, string or number" error:
define([
'jquery',
'underscore',
'jquery/ui',
'Magento_Ui/js/modal/modal',
'mage/translate'
], function ($, _) {
'use strict';
$.widget('mage.confirm', $.mage.modal, {
options: {
modalClass: 'confirm',
title: '',
focus: '.action-accept',
actions: {
/**
* Callback always - called on all actions.
*/
always: function () {},
/**
* Callback confirm.
*/
confirm: function () {},
/**
* Callback cancel.
*/
cancel: function () {}
},
buttons: [{
text: $.mage.__('Cancel'),
class: 'action-secondary action-dismiss',
/**
* Click handler.
*/
click: function (event) {
this.closeModal(event);
}
}, {
text: $.mage.__('OK'),
class: 'action-primary action-accept',
/**
* Click handler.
*/
click: function (event) {
this.closeModal(event, true);
}
}]
},
/**
* Create widget.
*/
_create: function () {
this._super();
this.modal.find(this.options.modalCloseBtn).off().on('click', _.bind(this.closeModal, this));
this.openModal();
},
/**
* Remove modal window.
*/
_remove: function () {
this.modal.remove();
},
/**
* Open modal window.
*/
openModal: function () {
return this._super();
},
/**
* Close modal window.
*/
closeModal: function (event, result) {
result = result || false;
if (result) {
this.options.actions.confirm(event);
} else {
this.options.actions.cancel(event);
}
this.options.actions.always(event);
this.element.bind('confirmclosed', _.bind(this._remove, this));
return this._super();
}
});
return function (config) {
return $('<div></div>').html(config.content).confirm(config);
};
});
javascript debugging internet-explorer-8
javascript debugging internet-explorer-8
edited Nov 20 '18 at 18:22
GTS Joe
asked Nov 20 '18 at 18:14
GTS JoeGTS Joe
59311332
59311332
1
Can you show your Error in Console?
– Banujan Balendrakumar
Nov 20 '18 at 18:18
1
On which line do you get that error?
– Bergi
Nov 20 '18 at 18:19
Before your edited your question theclass
word was not wrapped with single-quote. Is this the case?
– Dekel
Nov 20 '18 at 18:21
Can you post the whole file, please?buttons:
appears to be a property of something larger, which might as well contribute to the issue.
– Bergi
Nov 20 '18 at 18:21
1
@GTSJoe did you try to changeclass
to'class'
?
– Dekel
Nov 20 '18 at 18:40
|
show 4 more comments
1
Can you show your Error in Console?
– Banujan Balendrakumar
Nov 20 '18 at 18:18
1
On which line do you get that error?
– Bergi
Nov 20 '18 at 18:19
Before your edited your question theclass
word was not wrapped with single-quote. Is this the case?
– Dekel
Nov 20 '18 at 18:21
Can you post the whole file, please?buttons:
appears to be a property of something larger, which might as well contribute to the issue.
– Bergi
Nov 20 '18 at 18:21
1
@GTSJoe did you try to changeclass
to'class'
?
– Dekel
Nov 20 '18 at 18:40
1
1
Can you show your Error in Console?
– Banujan Balendrakumar
Nov 20 '18 at 18:18
Can you show your Error in Console?
– Banujan Balendrakumar
Nov 20 '18 at 18:18
1
1
On which line do you get that error?
– Bergi
Nov 20 '18 at 18:19
On which line do you get that error?
– Bergi
Nov 20 '18 at 18:19
Before your edited your question the
class
word was not wrapped with single-quote. Is this the case?– Dekel
Nov 20 '18 at 18:21
Before your edited your question the
class
word was not wrapped with single-quote. Is this the case?– Dekel
Nov 20 '18 at 18:21
Can you post the whole file, please?
buttons:
appears to be a property of something larger, which might as well contribute to the issue.– Bergi
Nov 20 '18 at 18:21
Can you post the whole file, please?
buttons:
appears to be a property of something larger, which might as well contribute to the issue.– Bergi
Nov 20 '18 at 18:21
1
1
@GTSJoe did you try to change
class
to 'class'
?– Dekel
Nov 20 '18 at 18:40
@GTSJoe did you try to change
class
to 'class'
?– Dekel
Nov 20 '18 at 18:40
|
show 4 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53399097%2fhow-can-i-fix-this-array-with-object-properties%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53399097%2fhow-can-i-fix-this-array-with-object-properties%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Can you show your Error in Console?
– Banujan Balendrakumar
Nov 20 '18 at 18:18
1
On which line do you get that error?
– Bergi
Nov 20 '18 at 18:19
Before your edited your question the
class
word was not wrapped with single-quote. Is this the case?– Dekel
Nov 20 '18 at 18:21
Can you post the whole file, please?
buttons:
appears to be a property of something larger, which might as well contribute to the issue.– Bergi
Nov 20 '18 at 18:21
1
@GTSJoe did you try to change
class
to'class'
?– Dekel
Nov 20 '18 at 18:40