1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-11-10 04:02:28 +01:00
polr/js/mpjs.js
2014-06-26 16:15:46 -04:00

73 lines
2.6 KiB
JavaScript

$(function() {
$( document ).tooltip();
var optionsbutton = $('#showoptions');
$('#options').hide();
var slid=0;
optionsbutton.click(function() {
var absfoot = '<footer><p id="footer-pad">&copy; Copyright 2014 Polr - <a href=\'privacypolicy.php\'>Privacy Policy</a> - <a href=\'tos.php\'>Terms of Service</a> - <a href="//cydrobolt.com/contact.html">Contact</a></p></footer>';
var pfoot = '<p id="footer">&copy; Copyright 2014 Polr - <a href=\'privacypolicy.php\'>Privacy Policy</a> - <a href=\'tos.php\'>Terms of Service</a> - <a href="//cydrobolt.com/contact.html">Contact</a></p>';
if(slid==0) {
$("#options").slideDown();
slid = 1;
$("#polrfooter").html(pfoot);
}
else {
$("#options").slideUp();
slid=0;
$("#polrfooter").html(absfoot)
}
});
$('#checkavail').click(function() {
var customlink = $('#custom').val();
var request = $.ajax({
url: "linkcheck.php",
type: "POST",
data: { link : customlink },
dataType: "html"
});
$('#status').html('<span><i class="fa fa-spinner"></i> Loading</span>');
request.done(function( msg ) {
if(msg=='0') {
$('#status').html(' <span style="color:red"><i class="fa fa-ban"></i> Already in use</span>');
}
else if(msg=='1') {
$('#status').html('<span style="color:green"><i class="fa fa-check"></i> Available</span>');
}
else if(msg=='2') {
$('#status').html('<span style="color:orange"><i class="fa fa-exclamation-triangle"></i> Invalid Custom URL Ending</span>');
}
else {
$('#status').html(' <span style="color:red"><i class="fa fa-exclamation-circle"></i> An error occured. Try again</span>'+msg);
}
});
request.fail(function( jqXHR, textStatus ) {
$('#status').html(' <span style="color:red"><i class="fa fa-exclamation-circle"></i> An error occured. Try again</span>'+textstatus);
});
});
min = 1;
max = 3;
var i = Math.floor(Math.random() * (max - min + 1)) + min;
changeTips(i);
var tipstimer=setInterval(function(){changeTips(i);i++;},8000);
function setTip(tip) {
$("#tips").html(tip);
}
function changeTips(tcase) {
switch(tcase) {
case 1:
setTip('Want to see the stats for an URL? Simply add a + to the URL (site.com/+url)');
break;
case 2:
setTip('Create an account to keep track of your links');
break;
case 3:
setTip('Did you know you can change the URL ending by clicking on "Link Options"?');
break;
i = 1;
}
}
});