corrade-http-templates

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 2  →  ?path2? @ 14
/massInvites/massInvites.html
@@ -1,34 +1,36 @@
<!doctype html>
 
<html lang="en">
 
<head>
<meta charset="utf-8">
 
<title>[Wizardry and Steamworks]:Corrade - Mass Invites</title>
 
<meta name="description" content="Mass Invites using Corrade">
<meta name="author" content="Wizardry and Steamworks">
<link rel="stylesheet" href="css/fonts.css?v=1.0">
<link rel="stylesheet" href="css/style.css?v=1.0">
 
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#send").click(function(e){
$("#controls").animate({ opacity: 'hide' }, 'slow');
$.ajax({
type: 'post',
url: "sendMassInvites.php",
data: {
avatars: $("#avatars").val()
}
}).done(function(data) {
$('#avatars').val(data);
$("#controls").animate({ opacity: 'show' }, 'slow');
$(document).ready(function() {
$("#send").click(function(e) {
$("#controls").animate({
opacity: 'hide'
}, 'slow');
$.ajax({
type: 'post',
url: "sendMassInvites.php",
data: {
avatars: $("#avatars").val()
}
}).done(function(data) {
$('#avatars').val(data);
$("#controls").animate({
opacity: 'show'
}, 'slow');
});
});
});
});
</script>
</head>
 
@@ -45,4 +47,5 @@
</div>
</div>
</body>
</html>
 
</html>