addon repository relocated

This commit is contained in:
Friendika 2011-09-25 01:56:03 -07:00
parent 2bf19ae652
commit 056921b1e8
124 changed files with 11673 additions and 1 deletions

View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link href="../client/fileuploader.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="demo"></div>
<ul id="separate-list"></ul>
<script src="../client/fileuploader.js" type="text/javascript"></script>
<script>
function createUploader(){
var uploader = new qq.FileUploader({
element: document.getElementById('demo'),
listElement: document.getElementById('separate-list'),
action: '../client/do-nothing.htm'
});
}
window.onload = createUploader;
</script>
</body>
</html>