You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$.get( ./languages/${file}.klc).done((data) => {
handleSuccess(data);
}).fail(() => {
// No local languages, try the CDN.
$.get(${CDN_LANGUAGES_DIRECTORY}/${file}.klc, (data) => {
handleSuccess(data);
});
});
while being used in sub urls it creates script error, suppose the ./languages is creating the issue.
The text was updated successfully, but these errors were encountered:
$.get(
./languages/${file}.klc
).done((data) => {handleSuccess(data);
}).fail(() => {
// No local languages, try the CDN.
$.get(
${CDN_LANGUAGES_DIRECTORY}/${file}.klc
, (data) => {handleSuccess(data);
});
});
while being used in sub urls it creates script error, suppose the ./languages is creating the issue.
The text was updated successfully, but these errors were encountered: