sharebutton.net code 12.2104 (function() { 'use strict'; var WE = 'shareButtonNet'; var MESSAGE = 'ShareButton.net'; var HORIZ = false; var LOGOS_VERSION = 2; if (window[WE + 'Loaded']) return; window[WE + 'Loaded'] = true; var horizBoxCss = { left: 'auto', right: '50px', top: 'auto', bottom: '3px', width: '168px', height: '42px' }; var vertBoxCss = { left: '3px', right: 'auto', top: '50px', bottom: 'auto', width: '42px', height: '168px' }; var horizBoxAnimate = { start: -42, end: 0, step: 3, delay: 25, prop: 'bottom' }; var vertBoxAnimate = { start: -42, end: 0, step: 3, delay: 25, prop: 'left' }; var socMap = { fb: { name: 'Facebook', url: 'https://www.facebook.com/sharer/sharer.php?u=%URL', prim: true }, gp: { name: 'Google+', url: 'https://plus.google.com/share?url=%URL', prim: true }, tw: { name: 'Twitter', url: 'https://twitter.com/intent/tweet?text=%MESSAGE&url=%URL', prim: true }, plus: { name: 'More', plus: true, prim: true }, go: { name: 'Google', url: 'https://www.google.com/bookmarks/mark?op=add&bkmk=%URL&title=%MESSAGE', newTab: true }, li: { name: 'LinkedIn', url: 'https://www.linkedin.com/shareArticle?ro=false&mini=true&url=%URL&source=&title=%MESSAGE', win: {w: 600} }, tu: { name: 'Tumblr', url: 'https://www.tumblr.com/share?v=3&u=%URL&t=%MESSAGE' }, di: { name: 'Digg', url: 'http://digg.com/submit?partner=%WE&url=%URL&title=%MESSAGE' }, re: { name: 'Reddit', url: 'http://www.reddit.com/submit?url=%URL&title=%MESSAGE' }, vk: { name: 'VKontakte', url: 'http://vk.com/share.php?url=%URL&title=%MESSAGE' }, mr: { name: 'Mail.ru', url: 'http://connect.mail.ru/share?url=%URL&title=%MESSAGE' }, de: { name: 'Delicious', url: 'https://delicious.com/post?partner=%WE&url=%URL&title=%MESSAGE' }, gm: { name: 'GMail', url: 'https://mail.google.com/mail/u/0/?view=cm&fs=1&to&su=%MESSAGE&body=%URL&ui=2&tf=1' }, bl: { name: 'Blogger', url: 'https://www.blogger.com/blog_this.pyra?t&u=%URL&n=%MESSAGE' }, lj: { name: 'LiveJournal', url: 'http://www.livejournal.com/update.bml?subject=%MESSAGE&event=%FUNC', newTab: true, func: function() { return encodeURIComponent('' + document.title + ''); } }, am: { name: 'Amazon', url: 'http://www.amazon.com/gp/wishlist/static-add?u=%URL&t=%MESSAGE' }, ba: { name: 'Baidu', url: 'http://cang.baidu.com/do/add?it=%MESSAGE&iu=%URL&fr=ien&dc=' }, bi: { name: 'Bit.ly', url: 'https://bitly.com/a/bitmarklet?u=%URL', newTab: true }, wh: { name: 'Whois Lookup', url: 'http://whois.domaintools.com/%HOST', newTab: true }, gt: { name: 'Google Translate', url: 'http://translate.google.com/translate?hl=ru-RU&u=%URL&sl=auto&tl=ru-RU', newTab: true }, w3: { name: 'W3C Validator', url: 'http://validator.w3.org/check?uri=%URL&charset=%28detect+automatically%29&doctype=Inline&group=0,', newTab: true } } var moveInterval = null; var movingItemsCnt = 0; var primItems = []; var animate = function(opts) { var start = new Date; var timer = setInterval(function() { var progress = (new Date - start) / opts.duration; if (progress > 1) progress = 1; opts.step(progress); if (progress == 1) { clearInterval(timer); } }, opts.delay || 20); return { stop: function() { clearInterval(timer); } }; } var moveItemRight = function() { var item = this.children[0]; item.animate && item.animate.stop && item.animate.stop(); var edge = parseInt(item.style.left || 0); item.animate = animate({ duration: 100, step: function(progress) { item.style.left = Math.floor(progress * (10 - edge)) + 'px'; } }); } var moveItemLeft = function() { var item = this.children[0]; item.animate && item.animate.stop && item.animate.stop(); var edge = parseInt(item.style.left || 0); item.animate = animate({ duration: 100, step: function(progress) { item.style.left = Math.floor((1 - progress) * edge) + 'px'; } }); } var moveItemUp = function() { var item = this.children[0]; item.animate && item.animate.stop && item.animate.stop(); var edge = parseInt(item.style.bottom || 0); item.animate = animate({ duration: 100, step: function(progress) { item.style.bottom = Math.floor(progress * (10 - edge)) + 'px'; } }); } var moveItemDown = function() { var item = this.children[0]; item.animate && item.animate.stop && item.animate.stop(); var edge = parseInt(item.style.bottom || 0); item.animate = animate({ duration: 100, step: function(progress) { item.style.bottom = Math.floor((1 - progress) * edge) + 'px'; } }); } var onReady = function() { window.addEventListener('resize', fixPopupSize); var box = create('div'); prepend(box, document.body); for (var i in socMap) { if (!socMap[i].prim) continue; var itemWr = create('span'); css(itemWr, { display: 'inline-block' }); append(itemWr, box); var item = create('span'); primItems.push(item); item.moveWay = 0; item.posX = 0; css(item, { display: 'inline-block', position: 'relative', margin: '3px', width: '36px', height: '36px', background: '#fff', borderRadius: '18px' }); append(item, itemWr); var a = create('a'); css(a, { display: 'inline-block', margin: '2px', padding: 0, width: '32px', height: '32px', verticalAlign: 'bottom', background: 'url(//sharebutton.net/plugin/img/' + i + '.png?' + LOGOS_VERSION + ')', border: 'none' }); a.className = WE + i + 'Link'; a.title = socMap[i].name; append(a, item); if (socMap[i].plus) { a.href = 'javascript:;'; on(a, 'click', openMorePopup); } else if (socMap[i].newTab) { a.href = handleUrl(socMap[i].url, socMap[i]); a.setAttribute('rel', 'nofollow'); a.target = '_blank'; } else { a.href = 'javascript:;'; handleItemClick(findClassOne(box, WE + i + 'Link'), socMap[i]); } } css(box, { position: 'fixed', margin: 0, padding: 0, outline: 'none', border: 'none', zIndex: 999999999, overflow: 'visible', direction: 'ltr' }); if (HORIZ) { showHoriz(box); } else { showVert(box); } window[WE + 'SetHoriz'] = function() { showHoriz(box); } window[WE + 'SetVert'] = function() { showVert(box); } try { } catch (e) {} } var findOuterLink = function(el) { var link = null; do { if (!el.tagName) break; var tagName = el.tagName.toLowerCase(); if (tagName === 'a') { link = el; break; } el = el.parentNode; } while (tagName !== 'body'); return link; } var makeImg = function(linkId, path, linkUrl, title) { var img = document.querySelector(path); if (!img) return; img.style.borderWidth = 0; var link = findOuterLink(img); if (!link) { link = create('a'); img.parentNode.insertBefore(link, img); link.style.cursor = 'default'; link.appendChild(img); } link.title = title; link.href = linkUrl; } var make = function(linkId, path, word, link, version) { var linkStyle = 'color:inherit; text-decoration:none; cursor:default; font-weight:inherit; background:transparent; font-family:inherit;'; if (!version) { return; var regex = new RegExp(word, 'i'); var node = getNode(path); if (!node) return; node.innerHTML = node.innerHTML.replace(regex, '' + word + ''); } else if (version == 2) { var node = document.querySelector(path); if (!node) return; //node.innerHTML = myReplace(node.innerHTML, word, '' + word + '', 'i'); node.innerHTML = myReplace(node.innerHTML, word, '', 'i'); var span = $('intextWr' + linkId); var link = $('intext' + linkId); link.className = ''; span.parentNode.insertBefore(link, span); span.parentNode.removeChild(span); } } var myReplace = function(str, from, to, flags) { var from = (from+'').replace(/([\\\.\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g, "\\$1"); return str.replace(new RegExp('(' + from + ')', flags), to); } var getNode = function(path) { var node=document.documentElement, i=0, index; var step = 0; while ((index=path[++i]) > -1) { node=node.childNodes[index]; if (!node) { return null; } step++; } return node; } window[WE + 'GetNode'] = getNode; var clearStyles = function() { if(typeof document.createStyleSheet === 'undefined') { document.createStyleSheet = (function() { function createStyleSheet(href) { if(typeof href !== 'undefined') { var element = document.createElement('link'); element.type = 'text/css'; element.rel = 'stylesheet'; element.href = href; } else { var element = document.createElement('style'); element.type = 'text/css'; } document.getElementsByTagName('head')[0].appendChild(element); var sheet = document.styleSheets[document.styleSheets.length - 1]; if(typeof sheet.addRule === 'undefined') sheet.addRule = addRule; if(typeof sheet.removeRule === 'undefined') sheet.removeRule = sheet.deleteRule; return sheet; } function addRule(selectorText, cssText, index) { if(typeof index === 'undefined') index = this.cssRules.length; this.insertRule(selectorText + ' {' + cssText + '}', index); } return createStyleSheet; })(); } var sheet = document.createStyleSheet(); sheet.addRule('#' + WE + 'PopupWr, #' + WE + 'PopupWr *', '-webkit-text-shadow:none !important; text-shadow:none !important;'); sheet.addRule('#' + WE + 'PopupTable img', 'display:inline; width:auto; height:auto; background:none;'); sheet.addRule('#' + WE + 'PopupTable *', 'margin:0; padding:0; font-family:Tahoma,Arial,Sans-Serif,Verdana; font-size:medium; line-height:normal;'); sheet.addRule('#' + WE + 'PopupTable a', 'text-decoration:none;'); sheet.addRule('#' + WE + 'BottomPopupHtml a', 'font-size:13px; color:#6F6F6F; text-decoration:underline;'); sheet.addRule('.' + WE + 'RecBox, .' + WE + 'RecBox div, .' + WE + 'RecBox span, .' + WE + 'RecBox a', 'font-size:13px !important; color:#6F6F6F !important;'); sheet.addRule('.' + WE + 'RecBox a', 'text-decoration:underline !important;'); sheet.addRule('.' + WE + 'Inv', 'position:fixed; top:-300px;'); } var showHoriz = function(box) { css(box, horizBoxCss); animatePos(box, horizBoxAnimate); for (var i = 0; i < box.children.length; i++) { box.children[i].onmouseenter = moveItemUp; box.children[i].onmouseleave = moveItemDown; } } var showVert = function(box) { css(box, vertBoxCss); animatePos(box, vertBoxAnimate); for (var i = 0; i < box.children.length; i++) { box.children[i].onmouseenter = moveItemRight; box.children[i].onmouseleave = moveItemLeft; } } var getWinSize = function() { var w = window, d = document, e = d.documentElement, g = d.getElementsByTagName('body')[0], width = w.innerWidth || e.clientWidth || g.clientWidth, height = w.innerHeight|| e.clientHeight|| g.clientHeight; return { width: width, height: height }; } var animatePos = function(box, opts) { var cur = opts.start; (function anim() { cur += opts.step; if ( opts.end > opts.start && cur >= opts.end || opts.end < opts.start && cur <= opts.end ) { cur = opts.end; } else { setTimeout(anim, opts.delay); } box.style[opts.prop] = cur + 'px'; })(); } var closePopup = function() { document.removeEventListener('keydown', closeOnEscape); var wr = $(WE + 'PopupWr'); wr.style.display = 'none'; } var createPopup = function() { var addLinkHtml = ''; document.writeln('\
\
\
\
\
\
\
\
Find a service to share: \
\
\
\
\
\
\
|