This repository has been archived by the owner on Nov 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
about.html
116 lines (94 loc) · 5.13 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fine Uploader | About</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Fine Uploader. A dependency-free, open-source, native browser upload tool.">
<link href='https://fonts.googleapis.com/css?family=Maven+Pro' rel='stylesheet' type='text/css'>
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="css/ie8.css" >
<![endif]-->
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="js/jquery.tipsy.min.js"></script>
</head>
<body>
<div id="header"></div>
<div class="jumbotron-small fixed">
<div class="container">
<div id="navbar"></div>
</div>
</div>
<div class="container">
<div class="row-fluid">
<div class="span2 ">
<ul class="nav nav-tabs nav-stacked about-nav">
<li><a href="#brief-description">Brief Description</a></li>
<li><a href="#history">History</a></li>
<li><a href="#licensing">Licensing</a></li>
<li><a href="#links">Links</a></li>
</ul>
</div>
<div class="span10">
<div class="marketing pb40">
<h1>About Fine Uploader</h1>
<hr class="no-margin">
<hr class="no-margin">
<p class="marketing-byline center">The world's best native, highly customizable, open source, JavaScript file upload library.
</p>
<div class="spacer"></div>
<h2 id="brief-description">Brief Description</h2>
<p>Fine Uploader aims to make file-uploading on the web possible in every browser and mobile device. It is cross-browser, dependency-free, and 100% JavaScript. The product is highly customizable, and allows integrators to fine-tune every aspect of their users’ upload experience. Implementation requires only a single CSS file, a JavaScript file, and a server to upload to. Fine Uploader users enjoy widespread browser support and a suite of features, resulting in a smooth experience when uploading files to a website.
</p>
<hr>
<h2 id="history">History</h2>
<p>Fine Uploader originally existed as file-uploader, and has also been known as valums/file-uploader (due to its location on GitHub).</p>
<p>Andrew Valums created file-uploader in 2010 as an improved version of “ajax-uploader”, also hosted on GitHub as a free open source project.</p>
<p>In August 2012, Andrew handed the project over to Ray Nicholus, and Ray has been maintaining and evolving this library since 2.0, when it was renamed Fine Uploader.</p>
<p>In March 2013, Widen Enterprises took over the development and management of Fine Uploader, with Ray Nicholus continuing as lead developer.</p>
<hr>
<hr>
<h2 id="licensing">Licensing</h2>
<p>Fine Uploader is a free open source <a href="https://raw.githubusercontent.com/FineUploader/fine-uploader/master/LICENSE">MIT licensed</a> library.</p>
<hr>
<div class="row-fluid">
<div class="span6">
<h2 id="links">Links</h2>
<ul>
<li><a href="http://fineuploader.com">Home Page/Demos</a></li>
<li><a href="http://docs.fineuploader.com">Documentation</a></li>
<li><a href="http://blog.fineuploader.com">Fine Uploader Blog</a></li>
<li><a href="http://stackoverflow.com/questions/tagged/fine-uploader">Stack Overflow</a></li>
<li><a href="https://github.com/FineUploader/fine-uploader">GitHub</a></li>
</ul>
</div>
</div>
<hr>
</div>
</div>
</div>
</div>
<div id="footer"></div>
<script>
$('.dropdown-toggle').dropdown();
$.get('./navbar.html', function(data) {
$('#navbar').html(data);
if (window.location.hash == '') {
$('#navbar').find('li').eq(0).addClass('active');
} else {
$('#navbar').find('a[href$="' + window.location.hash + '"]').parent().addClass('active');
}
});
$.get('./footer.html', function(data) {
$('#footer').html(data);
});
$.get('./header.html', function(data) {
$('#header').html(data);
});
</script>
</body>
</html>