Support us in 3 clicks ... Your support goes a long, long way!
If you like our project or just think we may have something seriously wrong with us, please pass it on! Hitting any button helps!
Thanks from the Beardo Crew!
-
1. SHARE
Share Beardo with your friends & fam
Share -
2. TWEET
tweet, tweet.
Tweet -
3. ENJOY our Video
Over and over!
Play
jQuery(function() {
var clicks = 0;
jQuery('button').on('click', function() {
clicks++;
var percent1 = Math.min(Math.round(clicks / 3 * 96), 100);
var percent2 = Math.min(Math.round(clicks / 3 * 100), 100);
jQuery('.percent').animate({width:percent1 + '%'}, 500);
jQuery('.number').text(percent2 + '%');
});
jQuery('.facebook').on('click', function() {
var w = 1000, h = 500,
left = (screen.width/2)-(w/2),
top = (screen.height/2)-(h/2);
var FBLink = "http://bit.ly/damncold";
var FBTitle = "BEARDO:%20Because%20Winter%20is%20DAMN%20cold ...";
var FBDescription = "Stay%20toasty%20with%20the%20'Beardo%20Keep%20WARM%20Project%20on%20Kickstarter'!%20You'll%20definitely%20want%20to%20see%20this!";
var FBImageURL = "http://img2.beardowear.com/damn_cold.jpg";
if ((screen.width < 480) || (screen.height < 480)) {
window.open ('https://www.facebook.com/dialog/feed?app_id=510156319060897&link=' + FBLink + '&description=' + FBDescription + '&name=' + FBTitle + '&redirect_uri=http://www.beardowear.com&picture=' + FBImageURL, '', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
} else {
window.open ('https://www.facebook.com/dialog/feed?app_id=510156319060897&link=' + FBLink + '&description=' + FBDescription + '&name=' + FBTitle + '&redirect_uri=http://www.beardowear.com&picture=' + FBImageURL, '', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}
});
jQuery('.twitter').on('click', function() {
var loc = encodeURIComponent('http://bit.ly/damncold'),
title = "Haha! Winter is DAMN cold - The Beardo 'Keep warm project' on Kickstarter will help! @beardowear ",
w = 580, h = 300,
left = (screen.width/2)-(w/2),
top = (screen.height/2)-(h/2);
window.open('http://twitter.com/share?text=' + title + '&url=' + loc, '', 'height=' + h + ', width=' + w + ', top='+top +', left='+ left +', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
});
jQuery('.play').on('click', function() {
window.open("http://bit.ly/damncold",'_blank');
});
});