Commit RELEASE-NOTES line for the wgCategories js variable I added some time ago.
[lhc/web/wiklou.git] / js2 / mwEmbed / example_usage / Multi_Upload.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3 <html>
4 <head>
5 <title>Sample Themed Player</title>
6 <script type="text/javascript" src="../mv_embed.js"></script>
7 </head>
8 <script type="text/javascript">
9 mwAddOnloadHook(function(){
10 //bind the upload drag and drop
11
12 //bind the multiple Files
13 });
14 </script>
15 <body>
16 <h3> Multiple File Upload:</h3>
17 <div style="-moz-border-radius:15px 15px 15px 15px;padding:10px;border:2px dotted #AAA;width:400px;height:200px">
18 <h3>Drag and Drop Files here</h3>
19 </div>
20 <h3> Or select multiple Files here</h3>
21 <form action='#' method='post' enctype='multipart/form-data'>
22 <input name='uploads[]' type=file multiple>
23 <input type='submit'>
24 </form>
25
26 </body>
27 </html>