We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be64d33 commit bb588f5Copy full SHA for bb588f5
js/gitana/application/EmailProvider.js
@@ -70,6 +70,8 @@
70
*/
71
send: function(email)
72
{
73
+ var self = this;
74
+
75
var emailId = null;
76
if (Gitana.isString(email))
77
@@ -80,7 +82,12 @@
80
82
emailId = email.getId();
81
83
}
84
- return this.chainPostEmpty(this, this.getUri() + "/send?email=" + emailId);
85
+ var uriFunction = function()
86
+ {
87
+ return self.getUri() + "/send?email=" + emailId;
88
+ };
89
90
+ return this.chainPostEmpty(this, uriFunction);
91
92
93
});
0 commit comments