Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2015-10-15 01:06:12 +0300
committerChaoyi Zha <summermontreal@gmail.com>2015-10-15 01:06:12 +0300
commitcc7354c8a5799cec4e57e6947b92182246b6181c (patch)
treec1c7ecf6f0cf95bcd7d119093c3483e307e2b514
parent1bede6921f416c2ffda121f0f9181bafe8040b39 (diff)
correctly indent file
-rw-r--r--js/index.js147
1 files changed, 74 insertions, 73 deletions
diff --git a/js/index.js b/js/index.js
index 5a8680e..3a876cf 100644
--- a/js/index.js
+++ b/js/index.js
@@ -1,70 +1,71 @@
$(function() {
- $( document ).tooltip();
- var optionsbutton = $('#showoptions');
- $('#options').hide();
- var slid=0;
- optionsbutton.click(function() {
- if (slid===0) {
+ $(document).tooltip();
+ var optionsbutton = $('#showoptions');
+ $('#options').hide();
+ var slid = 0;
+ optionsbutton.click(function() {
+ if (slid === 0) {
$("#options").slideDown();
slid = 1;
- }
- else {
+ } else {
$("#options").slideUp();
- slid=0;
+ slid = 0;
}
- });
- $('#checkavail').click(function() {
-var customlink = $('#custom').val();
-var request = $.ajax({
- url: "helpers/helper-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);
- }
-});
+ });
+ $('#checkavail').click(function() {
+ var customlink = $('#custom').val();
+ var request = $.ajax({
+ url: "helpers/helper-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);
+ 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 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"?');
- i = 1;
- break;
- }
- }
+ 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"?');
+ i = 1;
+ break;
+ }
+ }
});
$(function() {
@@ -76,22 +77,22 @@ $(function() {
e.stopPropagation();
});
$('.btn-toggle').click(function() {
- $(this).find('.btn').toggleClass('active');
+ $(this).find('.btn').toggleClass('active');
- if ($(this).find('.btn-primary').size()>0) {
- $(this).find('.btn').toggleClass('btn-primary');
- }
- if ($(this).find('.btn-danger').size()>0) {
- $(this).find('.btn').toggleClass('btn-danger');
- }
- if ($(this).find('.btn-success').size()>0) {
- $(this).find('.btn').toggleClass('btn-success');
- }
- if ($(this).find('.btn-info').size()>0) {
- $(this).find('.btn').toggleClass('btn-info');
- }
+ if ($(this).find('.btn-primary').size() > 0) {
+ $(this).find('.btn').toggleClass('btn-primary');
+ }
+ if ($(this).find('.btn-danger').size() > 0) {
+ $(this).find('.btn').toggleClass('btn-danger');
+ }
+ if ($(this).find('.btn-success').size() > 0) {
+ $(this).find('.btn').toggleClass('btn-success');
+ }
+ if ($(this).find('.btn-info').size() > 0) {
+ $(this).find('.btn').toggleClass('btn-info');
+ }
- $(this).find('.btn').toggleClass('btn-default');
+ $(this).find('.btn').toggleClass('btn-default');
});
});