aboutsummaryrefslogtreecommitdiff
path: root/vendors/uploadify/example/index.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-07-29 04:13:33 +0200
committerSem <sembrestels@riseup.net>2012-07-29 04:13:33 +0200
commit7a9177c9df49d6fc02280df02d6e7f6d52531382 (patch)
tree518ecb9df491374faa1062fee2d32dca61ba74a3 /vendors/uploadify/example/index.php
parentf9e9c6cb5950ccf1d1d5396caa9dbb2803aacdad (diff)
parent24ff6662195222479b4d83d41fa89edc8a3c05d1 (diff)
downloadelgg-7a9177c9df49d6fc02280df02d6e7f6d52531382.tar.gz
elgg-7a9177c9df49d6fc02280df02d6e7f6d52531382.tar.bz2
Merge branch 'no-flash-uploader' of git://github.com/sembrestels/Tidypics
Diffstat (limited to 'vendors/uploadify/example/index.php')
-rw-r--r--vendors/uploadify/example/index.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/vendors/uploadify/example/index.php b/vendors/uploadify/example/index.php
deleted file mode 100644
index 769d11c61..000000000
--- a/vendors/uploadify/example/index.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<title>Uploadify Example Script</title>
-<link href="/example/css/default.css" rel="stylesheet" type="text/css" />
-<link href="/example/css/uploadify.css" rel="stylesheet" type="text/css" />
-<script type="text/javascript" src="/example/scripts/jquery-1.3.2.min.js"></script>
-<script type="text/javascript" src="/example/scripts/swfobject.js"></script>
-<script type="text/javascript" src="/example/scripts/jquery.uploadify.v2.1.0.min.js"></script>
-<script type="text/javascript">
-$(document).ready(function() {
- $("#uploadify").uploadify({
- 'uploader' : 'scripts/uploadify.swf',
- 'script' : 'scripts/uploadify.php',
- 'cancelImg' : 'cancel.png',
- 'folder' : 'uploads',
- 'queueID' : 'fileQueue',
- 'auto' : true,
- 'multi' : true
- });
-});
-</script>
-</head>
-
-<body>
-<div id="fileQueue"></div>
-<input type="file" name="uploadify" id="uploadify" />
-<p><a href="javascript:jQuery('#uploadify').uploadifyClearQueue()">Cancel All Uploads</a></p>
-</body>
-</html>