How Can I Fix this Array with Object Properties












0















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);
};
});









share|improve this question




















  • 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
















0















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);
};
});









share|improve this question




















  • 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














0












0








0








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);
};
});









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 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














  • 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








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












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
});


}
});














draft saved

draft discarded


















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
















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter