Skip to content

Commit

Permalink
build 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Khomushin committed Jun 9, 2021
1 parent 17d00c1 commit 83c782a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 13 deletions.
10 changes: 2 additions & 8 deletions dist/email.js
Original file line number Diff line number Diff line change
Expand Up @@ -2535,15 +2535,9 @@ var es_object_keys = __webpack_require__(7941);
;// CONCATENATED MODULE: ./es/models/EmailJSResponseStatus.js
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }

var EmailJSResponseStatus = function EmailJSResponseStatus(httpResponse) {
_classCallCheck(this, EmailJSResponseStatus);

_defineProperty(this, "status", void 0);

_defineProperty(this, "text", void 0);

this.status = httpResponse.status;
this.text = httpResponse.responseText;
};
Expand Down Expand Up @@ -2596,7 +2590,7 @@ var send = function send(serviceID, templateID, templatePrams, userID) {
var uID = userID || store._userID;
validateParams(uID, serviceID, templateID);
var params = {
lib_version: '3.0.1',
lib_version: '3.0.2',
user_id: uID,
service_id: serviceID,
template_id: templateID,
Expand Down Expand Up @@ -2643,7 +2637,7 @@ var sendForm = function sendForm(serviceID, templateID, form, userID) {
var currentForm = findHTMLForm(form);
validateParams(uID, serviceID, templateID);
var formData = new FormData(currentForm);
formData.append('lib_version', '3.0.1');
formData.append('lib_version', '3.0.2');
formData.append('service_id', serviceID);
formData.append('template_id', templateID);
formData.append('user_id', uID);
Expand Down
Loading

0 comments on commit 83c782a

Please sign in to comment.