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 8227633 + d0c995e commit cf7e245Copy full SHA for cf7e245
src/gmail.js
@@ -863,6 +863,23 @@ var Gmail = function() {
863
}
864
865
866
+ api.tools.infobox = function(message, time){
867
+ var top = $(".b8.UC");
868
+ if(top.length > 0){
869
+ var info = top.find(".vh");
870
+ info.text(message);
871
+ if(typeof time !== "undefined"){
872
+ top.css('visibility', 'visible').fadeTo(time, 0, function(){
873
+ $(this).css("visibility", "hidden");
874
+ $(this).css("opacity", "");
875
+ });
876
+ }
877
+ else{
878
+ top.css('visibility', 'visible');
879
880
881
882
+
883
api.tools.parse_email_data = function(email_data) {
884
var data = {};
885
var threads = {}
0 commit comments