19 lines
518 B
JavaScript
Executable File
19 lines
518 B
JavaScript
Executable File
(function() {
|
||
jQuery('#widget-container').frameColissimoOpen({
|
||
"ceLang" : "fr",
|
||
"callBackFrame" : ‘callBackFrame’,
|
||
"URLColissimo" : " https://ws.colissimo.fr",
|
||
"ceCountryList" : "FR,ES,GB,PT,DE",
|
||
"ceCountry" : "FR",
|
||
"dyPreparationTime" : "1",
|
||
"ceAddress" : "62 RUE CAMILLE DESMOULINS",
|
||
"ceZipCode" : "92130",
|
||
"ceTown" : "ISSY LES MOULINEAUX",
|
||
"token" : "xxxxxyyycdcbucysbycudsyds.fghdfgdf"
|
||
});
|
||
})();
|
||
function callBackFrame(point) {
|
||
console.log('call back frame');
|
||
console.log(point);
|
||
}
|