corrade-http-templates – Diff between revs 14 and 79

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 14 Rev 79
1 <!doctype html> 1 <!doctype html>
2   2  
3 <html lang="en"> 3 <html lang="en">
4   4  
5 <head> 5 <head>
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7   7  
8 <title>[Wizardry and Steamworks]:Corrade - Mass Invites</title> 8 <title>[Wizardry and Steamworks]:Corrade - Mass Invites</title>
9   9  
10 <meta name="description" content="Mass Invites using Corrade"> 10 <meta name="description" content="Mass Invites using Corrade">
11 <meta name="author" content="Wizardry and Steamworks"> 11 <meta name="author" content="Wizardry and Steamworks">
12   12  
13 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> 13 <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
14 <script type="text/javascript"> 14 <script type="text/javascript">
15 $(document).ready(function() { 15 $(document).ready(function() {
16 $("#send").click(function(e) { 16 $("#send").click(function(e) {
17 $("#controls").animate({ 17 $("#controls").animate({
18 opacity: 'hide' 18 opacity: 'hide'
19 }, 'slow'); 19 }, 'slow');
20 $.ajax({ 20 $.ajax({
21 type: 'post', 21 type: 'post',
22 url: "sendMassInvites.php", 22 url: "sendMassInvites.php",
23 data: { 23 data: {
24 avatars: $("#avatars").val() 24 avatars: $("#avatars").val()
25 } 25 }
26 }).done(function(data) { 26 }).done(function(data) {
27 $('#avatars').val(data); 27 $('#avatars').val(data);
28 $("#controls").animate({ 28 $("#controls").animate({
29 opacity: 'show' 29 opacity: 'show'
30 }, 'slow'); 30 }, 'slow');
31 }); 31 });
32 }); 32 });
33 }); 33 });
34 </script> 34 </script>
35 </head> 35 </head>
36   36  
37 <body> 37 <body>
38 <div id="container"> 38 <div id="container">
39 <textarea id="avatars" rows="12">Kira Komarov 39 <textarea id="avatars" rows="12">Kira Komarov
40 LindenHomeDemo Resident 40 LindenHomeDemo Resident
41 Garbage Garbage Garbage - woooooo!! Test test! 41 Garbage Garbage Garbage - woooooo!! Test test!
42 d726edfb-a1c4-4499-8c01-2746227b55e5 42 d726edfb-a1c4-4499-8c01-2746227b55e5
43 Philip Linden 43 Philip Linden
44 </textarea><br/> 44 </textarea><br/>
45 <div id="controls"> 45 <div id="controls">
46 <button type="button" id="send">Send</button> 46 <button type="button" id="send">Send</button>
47 </div> 47 </div>
48 </div> 48 </div>
49 </body> 49 </body>
50   50  
51 </html> 51 </html>
52   52  
53
Generated by GNU Enscript 1.6.5.90.
53
Generated by GNU Enscript 1.6.5.90.
54   54  
55   55  
56   56