addressing some actual questions seen around the interwebs

pull/1/head
Andromeda Yelton 2012-05-21 13:39:19 -04:00
parent 1a53d8b86d
commit 32a7699eb5
3 changed files with 30 additions and 22 deletions

View File

@ -21,31 +21,11 @@
{% block base_js %}
<script type="text/javascript" src="{{ jquery_home }}"></script>
{% endblock %}
<script type="text/javascript" src="/static/js/expand_about.js"></script>
{% block extra_js %}
{% endblock %}
<script type="text/javascript" src="/static/js/watermark_init.js"></script>
<script type="text/javascript" src="/static/js/watermark_change.js"></script>
<script type="text/javascript">
var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('#about_expander').click(function(){
$j('#js-topsection').css({"opacity": "0.07"});
$j('.launch_top').css({"opacity": "0.07"});
$j('#main-container').css({"opacity": "0.07"});
$j('#js-rightcol').css({"opacity": "0.07"});
$j('#js-header').css({"opacity": "0.07"});
$j('#about_expandable').fadeTo("slow", 1);
});
$j('#about_collapser').click(function(){
$j('#js-topsection').fadeTo("slow", 1);
$j('.launch_top').fadeTo("slow", 1);
$j('#main-container').fadeTo("slow", 1);
$j('#js-rightcol').fadeTo("slow", 1);
$j('#js-header').fadeTo("slow", 1);
$j('#about_expandable').css({"display": "none"});
});
});
</script>
{% block extra_head %}
{% endblock %}
</head>

View File

@ -36,9 +36,18 @@ If you're a rights holder, starting campaigns is free, too. You only pay Unglue
To fund a campaign, you'll need a valid credit card. To start a campaign, you'll need to establish yourself with us as a rights holder, including demonstrating that you have the rights to the content you want to unglue. See the FAQs <a href="/faq/rightsholders/">for Rights Holders</a> for more.</dd>
<dt>Why should I fund a book at Unglue.it when I can just buy it somewhere else?</dt>
<dd>When you buy a book, you get a copy for yourself. When you unglue it, you give a copy to yourself and everyone on earth.</dd>
<dt>What do I get when I unglue a book?</dt>
<dd>You get a better ebook. Your unglued ebook has no DRM: you can put it on any device you want, in any format you want. You can legally copy it and share it with your friends. You can read it on the network or off, with no one tracking your reading.<br /><br />
You may get premiums, depending on the amount you pledge. Each campaign has its own set.<br /><br />
And you get the satisfaction of helping readers and libraries everywhere: giving a book to everyone on earth.</dd>
<dt>Does Unglue.it own the copyright of unglued books?</dt>
<dd>No. When you unglue a book, the copyright stays with its current owner. A <a href="http://creativecommons.org">Creative Commons</a> license is a licensing agreement. As with other licensing agreements, it grants certain rights to others but does not affect the status of the copyright.<br /><br />
<dd>No. When you unglue a book, the copyright stays with its current owner. Unglue.it does not buy copyrights. A <a href="http://creativecommons.org">Creative Commons</a> license is a licensing agreement. As with other licensing agreements, it grants certain rights to others but does not affect the status of the copyright.<br /><br />
Just like many traditional publishing transactions, ungluing is about licensing rights. We use <a href="http://creativecommons.org">Creative Commons</a> licenses to make ebooks available to the world while respecting and protecting copyright.<br /><br />

19
static/js/expand_about.js Normal file
View File

@ -0,0 +1,19 @@
var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('#about_expander').click(function(){
$j('#js-topsection').css({"opacity": "0.07"});
$j('.launch_top').css({"opacity": "0.07"});
$j('#main-container').css({"opacity": "0.07"});
$j('#js-rightcol').css({"opacity": "0.07"});
$j('#js-header').css({"opacity": "0.07"});
$j('#about_expandable').fadeTo("slow", 1);
});
$j('#about_collapser').click(function(){
$j('#js-topsection').fadeTo("slow", 1);
$j('.launch_top').fadeTo("slow", 1);
$j('#main-container').fadeTo("slow", 1);
$j('#js-rightcol').fadeTo("slow", 1);
$j('#js-header').fadeTo("slow", 1);
$j('#about_expandable').css({"display": "none"});
});
});