CC-2425:Tweaks to phone home metric

- Done
This commit is contained in:
James 2011-06-24 17:26:37 -04:00
parent 0b0d38b990
commit cc542797c7
4 changed files with 10 additions and 2 deletions

View file

@ -15,7 +15,7 @@
<?php endforeach; ?> <?php endforeach; ?>
</ul> </ul>
<?php endif; ?> <?php endif; ?>
<div class="info-text">By checking this box, I agree to Sourcefabric's privacy policy.</div> <div class="info-text">By checking this box, I agree to Sourcefabric's <a id="link_to_privacy" href="">privacy policy</a>.</div>
</dd> </dd>
<dd id="publicize-element"> <dd id="publicize-element">
<label class="optional" for="Publicise"> <label class="optional" for="Publicise">

View file

@ -18,7 +18,7 @@
<?php endforeach; ?> <?php endforeach; ?>
</ul> </ul>
<?php endif; ?> <?php endif; ?>
<div class="info-text">By checking this box, I agree to Sourcefabric's privacy policy.</div> <div class="info-text">By checking this box, I agree to Sourcefabric's <a id="link_to_privacy" href="">privacy policy</a>.</div>
</dd> </dd>
<dt class="block-display info-text"> <dt class="block-display info-text">
Click the box below to advertise your station on <a id="link_to_whos_using" href="">Sourcefabric.org</a>. In order to publicise your station, "Send support feedback" must be enabled Click the box below to advertise your station on <a id="link_to_whos_using" href="">Sourcefabric.org</a>. In order to publicise your station, "Send support feedback" must be enabled

View file

@ -59,6 +59,10 @@ $(document).ready(function(){
$("#link_to_whos_using").live('click', function(){ $("#link_to_whos_using").live('click', function(){
window.open("http://sourcefabric.org/en/products/airtime_whosusing"); window.open("http://sourcefabric.org/en/products/airtime_whosusing");
}); });
$("#link_to_privacy").live('click', function(){
window.open("http://www.sourcefabric.org/en/about/policy/");
});
}); });
function validateFields(){ function validateFields(){

View file

@ -55,4 +55,8 @@ $(document).ready(function() {
}); });
showErrorSections(); showErrorSections();
$("#link_to_privacy").live('click', function(){
window.open("http://www.sourcefabric.org/en/about/policy/");
});
}); });