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.
2 parents 73cf637 + 89da88a commit 7aa6a3fCopy full SHA for 7aa6a3f
src/gmail.js
@@ -195,7 +195,17 @@ var Gmail = function() {
195
}
196
return [];
197
198
-
+
199
+ api.get.compose_ids = function() {
200
+ var ret = [];
201
+ var dom = $(".AD [name=draft]");
202
+ for (var i = 0; i < dom.length; i++) {
203
+ if(dom[i].value != "undefined"){
204
+ ret.push(dom[i].value);
205
+ }
206
+ };
207
+ return ret;
208
209
210
api.get.email_id = function() {
211
var hash = null;
0 commit comments