Add a waiting icon while the mail is sent. re #53
This commit is contained in:
parent
3ed5685f12
commit
fc8c510ae4
|
@ -10,7 +10,7 @@
|
||||||
{{~it.book.datas:data:i}}
|
{{~it.book.datas:data:i}}
|
||||||
<a href="{{=data.url}}">{{=data.format}}</a>
|
<a href="{{=data.url}}">{{=data.format}}</a>
|
||||||
{{? data.mail == 1}}
|
{{? data.mail == 1}}
|
||||||
<a title="Mail" href="empty.php" onclick="sendToMailAddress (this, {{=data.id}}); return false;"><i class="icon-envelope icon-large"></i></a>
|
<a id="mailButton" title="Mail" href="empty.php" onclick="sendToMailAddress (this, {{=data.id}}); return false;"><i class="icon-envelope icon-large"></i></a>
|
||||||
{{?}}
|
{{?}}
|
||||||
<br />
|
<br />
|
||||||
{{~}}
|
{{~}}
|
||||||
|
|
2
util.js
2
util.js
|
@ -51,6 +51,7 @@ function elapsed () {
|
||||||
}
|
}
|
||||||
|
|
||||||
function retourMail(data, textStatus, jqXHR ) {
|
function retourMail(data, textStatus, jqXHR ) {
|
||||||
|
$("#mailButton :first-child").removeClass ("icon-spinner icon-spin").addClass ("icon-envelope");
|
||||||
alert (data);
|
alert (data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,6 +65,7 @@ function sendToMailAddress (component, dataid) {
|
||||||
if (currentData.databaseId) {
|
if (currentData.databaseId) {
|
||||||
url = url + '?db=' + currentData.databaseId;
|
url = url + '?db=' + currentData.databaseId;
|
||||||
}
|
}
|
||||||
|
$("#mailButton :first-child").removeClass ("icon-envelope").addClass ("icon-spinner icon-spin");
|
||||||
$.ajax ({'url': url, 'type': 'post', 'data': { 'data': dataid, 'email': email }, 'success': retourMail});
|
$.ajax ({'url': url, 'type': 'post', 'data': { 'data': dataid, 'email': email }, 'success': retourMail});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue