(function(){LI.define("HopscotchCallout");
LI.HopscotchCallout=function(d,c){var g={jsFiles:["lib/hopscotch/0.0.5/js/hopscotch-0.0.5"],cssFiles:["css!scss/themes/katy/chrome/hopscotch"]},a="hopscotch-ready",h={showOn:"click",orientation:"top",target:d,showNumber:false,xOffset:0,yOffset:0,arrowOffset:0,zIndex:null,width:null,ctaLabel:null,ctaOnClick:null,onClose:null,openOnLoad:false},b;
function e(){if(!window.hopscotch&&!LI.HopscotchCallout.loadingHS){LI.HopscotchCallout.loadingHS=true;
require.ensure(g.cssFiles,function(k){for(var l=0,j=g.cssFiles.length;
l<j;
l++){k(g.cssFiles[l]).attach()
}});
require.ensure(g.jsFiles,function(){for(var k=0,j=g.jsFiles.length;
k<j;
k++){require(g.jsFiles[k])
}$(document).trigger(a)
})
}}c=$.extend(true,h,c);
b={id:c.id,title:c.title,content:c.content,orientation:c.orientation,target:c.target,showNumber:c.showNumber,xOffset:c.xOffset,yOffset:c.yOffset,zindex:c.zIndex,width:c.width,bubblePadding:0,showCTAButton:!!c.ctaLabel,ctaLabel:c.ctaLabel,onCTA:c.ctaOnClick,onClose:c.onClose,arrowOffset:c.arrowOffset};
function f(i,k){var j=null;
if(!window.hopscotch){$(document).bind(a,function(l,m){j=hopscotch.getCalloutManager();
j.removeAllCallouts();
j.createCallout(b)
})
}else{j=hopscotch.getCalloutManager();
j.removeAllCallouts();
if(i){i.stopPropagation()
}if(k){b.target=i.currentTarget
}j.createCallout(b)
}}this.open=function(i,l,k){function j(){if(LI.QuickHelpManager&&LI.QuickHelpManager.tourRunning()){return
}f(i,l)
}if(k){f(i,l)
}else{if(LI.QuickHelpManager&&!LI.QuickHelpManager.isReady()){LI.Events.bind("QuickHelpRegistered",j)
}else{j()
}}};
this.close=function(){if(window.hopscotch){hopscotch.getCalloutManager().removeAllCallouts()
}};
e();
if(c.openOnLoad){this.open()
}else{$(d).on(c.showOn,f)
}}
}());(function(b,a,c){a.define("Tabs");
a.Tabs=a.BaseControl.extend(function(d){var e={currentClass:"tabs-current"};
return{afterDecoration:function(){this._config=_.defaults(this._config,e);
this._$controls=this._$el.children();
this._$tabs=this._config.tabsElement?$(this._config.tabsElement).children():this._$controls.next().children()
},attachEventListeners:function(){this._$controls.on("click",_.bind(this._handleClick,this))
},currentTab:0,_handleClick:function(g){var f=this._$controls.index(g.currentTarget);
g.preventDefault();
this.showTab(f)
},showTab:function(f){var g=this._config.currentClass,h=$(this._$tabs[f]);
if(f!==this.currentTab&&h.length){this._$controls.removeClass(g).eq(f).addClass(g);
this._$tabs.removeClass(g).eq(f).addClass(g);
h.attr("tabIndex",-1).focus();
this.currentTab=f
}return this
}}
});
define("scripts/shared/Tabs",[],function(){return a.Tabs
})
}(this,LI));function ShowMore(c,d){var d=d||{};
c=(c.constructor==String)?YDom.get(c):c;
var d={charCount:d.charCount||100,className:d.className||"",showMoreText:d.showMoreText||LI.i18n.get("ShowMore-see-more"),showLessText:d.showLessText||LI.i18n.get("ShowMore-see-less"),showMoreTextLong:d.showMoreTextLong||LI.i18n.get("ShowMore-see-more-long"),showLessTextLong:d.showLessTextLong||LI.i18n.get("ShowMore-see-less-long"),showEllipsis:(d.showEllipsis===false)?false:true};
if(c&&c.innerHTML){var l=c.innerHTML,b=d.charCount,f=d.showMoreText,g=/<\/?\w+(\s+\w+="?[^>]*"?)*\s*>/g,p=l.match(g),e=l.replace(g,"|").replace(/\n/g,"\u0007").replace(/\s+/g," ").replace(/(^\s|\s$)/g,""),o=e.match(new RegExp("(.{"+b+"})(.*)"));
if(!o||o[2].length<f.length*1.5){return null
}else{var k=o[1],m=o[2];
if(k.match(/\w$/)&&m.match(/^\w/)){m=k.match(/\w+$/)[0]+m;
k=k.replace(/\w+$/,"")
}var n,j,a=[],i={collapsed:true,showMore:f,showLess:d.showLessText,showMoreLong:d.showMoreTextLong,showLessLong:d.showLessTextLong,className:d.className,el:c};
while(p&&p[0]){n=p.shift();
if(k.match(/\|[^$]/)){k=k.replace(/\|/,n)
}else{if(k.match(/\|/)){k=k.replace(/\|/,"")
}else{if(n.match(/<\//)){a.push(n)
}}}if(p.length==0){k+=a.join("")
}}var h=k.replace(/^\s+|\s+$/g,"");
if(d.showEllipsis){h+="..."
}h=h.replace(/\u0007/g,"\n");
i.content={original:l,truncated:h};
c.innerHTML=h;
j=i.link=document.createElement("A");
j.href="#";
j.title=d.showLessTextLong;
j.className="toggle-show-more";
j.innerHTML=i.showLess;
if(i.collapsed){j.title=d.showMoreTextLong;
j.innerHTML=i.showMore
}c.appendChild(j);
YEvent.on(c,"click",this.toggle,i)
}}}ShowMore.prototype={toggle:function(a,e){var f,d=e.link,c=e.content,b=YEvent.getTarget(a);
if(b.tagName=="A"&&b.className=="toggle-show-more"){YEvent.preventDefault(a);
f=e.collapsed=!e.collapsed;
this.removeChild(d);
if(f){d.title=e.showMoreLong;
d.innerHTML=e.showMore;
this.innerHTML=c.truncated;
if(e.className&&e.el){YDom.removeClass(e.el,e.className)
}}else{d.title=e.showLessLong;
d.innerHTML=e.showLess;
this.innerHTML=c.original;
if(e.className&&e.el){YDom.addClass(e.el,e.className)
}}this.appendChild(d)
}}};(function(){var b=null,g=$(".join-linkedin-promo"),f=$("#biz-careers-sticky"),c=$("#feed-content"),a;
function h(){if(g){g.slideDown();
$(".dismiss",g).on("click",function(j){g.remove()
})
}}function e(j){if(!a){var l=$("#join-linkedin-dialog .sign-in").attr("href"),k=l?LI.parseQueryString(l):{},m=k["trk"];
if(m){a=l.replace(m,"biz-feed-social-actions")
}else{return
}}window.location.href=a;
return false
}function d(j){setTimeout(function(){LI.Dialog().open({name:"join-linkedin-dialog",type:"interrupt",className:"dialog-v2 no-padding",width:455,content:{title:b,node:"join-linkedin-dialog"}})
},100);
return false
}function i(){b=LI.i18n.get("biz_join_linkedin");
c.on("click","a.like, a.focus-comment-form, li.seemore a, li.feed-share a",e);
c.on("click",".other-likers",d);
c.on("focus","textarea",d);
if(f){$(".careers-promo","#biz-careers-top").clone().appendTo(f)
}h()
}$(document).ready(i)
}());(function(){dust.register("tl/shared/uscp/feed/_assets",a);
function a(c,b){return c.reference(b.get("tlAuto_1"),b,"h",["s"]).reference(b.get("tlAuto_2"),b,"h",["s"]).reference(b.get("tlAuto_3"),b,"h",["s"]).reference(b.get("tlAuto_4"),b,"h",["s"]).reference(b.get("tlAuto_5"),b,"h",["s"]).reference(b.get("tlAuto_6"),b,"h",["s"]).reference(b.get("tlAuto_7"),b,"h",["s"]).reference(b.get("tlAuto_8"),b,"h",["s"]).reference(b.get("tlAuto_9"),b,"h",["s"]).reference(b.get("tlAuto_10"),b,"h",["s"])
}return a
})();
(function(){dust.register("_assets",dust.cache["tl/shared/uscp/feed/_assets"])
})();LI.define("SocialShareButton");
LI.SocialShareButton=function(c,d){var i=window.encodeURIComponent,h={"linkedin":"//platform.linkedin.com/in.js","twitter":"//platform.twitter.com/widgets.js","facebook":"//connect.facebook.net/"+LI.i18n.getLocale().value+"/all.js#xfbml=1","googleplus":"//apis.google.com/js/plusone.js"},g={classNames:{LIKE:"fb-like",SHARE:"fb-share-button"},types:{LIKE:"LIKE",SHARE:"SHARE"}};
d=d||{};
d.type=d.type||null;
d.actionType=d.actionType||null;
d.text=d.text||null;
d.url=d.url||null;
d.origUrl=d.origUrl||null;
d.webtrack=d.webtrack||null;
d.winParams=d.winParams||"width=550,height=380";
function a(p,o,m){var n,l=document.createElement("script");
l.text=m||"";
l.id=p;
l.src=o;
l.async=true;
n=document.getElementsByTagName("script")[0];
n.parentNode.insertBefore(l,n)
}function f(l){a(l,h["linkedin"],"lang: "+LI.i18n.getLocale().value)
}function e(l){var m=document.createElement("div");
m.innerHTML=l;
if(m.firstChild){return m.firstChild.nodeValue
}return l
}function k(l){return function(){if(l&&WebTracking){WebTracking.trackUserAction(l)
}}
}function j(l){if(!c){return
}if(c.tagName==="A"){c.href=l
}c.onclick=function(m){k(d.webtrack)();
window.open(l,null,d.winParams);
return false
}
}function b(l){l=l||g.types.LIKE;
return function(o){var m,p,n;
if(o&&d.url){n="http://www.facebook.com/sharer/sharer.php?u="+d.url;
n+=(d.text?"&t="+i(d.text):"");
j(n)
}else{p=document.createElement("div");
p.className=g.classNames[l];
p.setAttribute(l===g.types.LIKE?"data-layout":"data-type","button_count");
p.setAttribute("data-show-faces","false");
p.setAttribute("data-send","false");
if(d.url){p.setAttribute("data-href",d.url)
}if(d.webtrack){window.fbAsyncInit=function(){window.FB.Event.subscribe("edge.create",k(d.webtrack))
}
}m=document.createElement("div");
m.id="fb-root";
document.getElementsByTagName("html")[0].setAttribute("xmlns:fb","http://www.facebook.com/2008/fbml");
c.appendChild(m);
c.appendChild(p);
a("facebook-script",h.facebook)
}}
}this.linkedinLoad=function(n){var m,o,l=window.IN;
if(n&&d.url){m="http://www.linkedin.com/shareArticle?url="+d.url;
m+=(d.text?"&summary="+i(d.text):"");
m+=(d.title?"&title="+i(d.title):"");
j(m)
}else{o=document.createElement("script");
o.setAttribute("type","IN/Share");
o.setAttribute("data-counter","right");
o.setAttribute("data-onsuccess","linkedinCallback");
if(d.origUrl){o.setAttribute("data-url",d.origUrl)
}if(d.webtrack){window.linkedinCallback=window.linkedinCallback||k(d.webtrack)
}c.appendChild(o);
if(l&&l.Event){l.Event.on(l,"systemReady",function(){l.parse()
})
}else{f("linkedin-script")
}}};
this.facebookShareLoad=b(g.types.SHARE);
this.facebookLikeLoad=b(g.types.LIKE);
this.facebookLoad=b(g.types.LIKE);
this.twitterLoad=function(n){var m,p,l,o;
if(n&&d.url){m="https://twitter.com/intent/tweet?&url="+d.url;
o=i(d.text);
m+=(d.text?"&text="+o:"");
j(m)
}else{p=document.createElement("a");
p.appendChild(document.createTextNode("Tweet"));
p.className="twitter-share-button";
p.href="https://twitter.com/share";
p.setAttribute("data-counter","right");
if(d.url){p.setAttribute("data-url",d.url)
}if(d.htmlizedText){p.setAttribute("data-text",e(d.htmlizedText))
}if(d.origUrl){p.setAttribute("data-counturl",d.origUrl)
}if(d.webtrack){l=window.twttr=window.twttr||(window.t={_e:[],ready:function(q){window.t._e.push(q)
}});
l.ready(function(){l.events.bind("tweet",k(d.webtrack))
})
}c.appendChild(p);
a("twitter-script",h.twitter)
}};
this.googleplusLoad=function(n){var m,p,o,l;
if(n&&d.url){m="https://plus.google.com/u/0/share?url="+d.url;
j(m)
}else{o=document.getElementsByTagName("html")[0];
l=o.className;
if(l&&l.indexOf("lte7")>0){return
}p=document.createElement("div");
p.className="g-plusone";
p.setAttribute("data-size","medium");
if(d.url){p.setAttribute("data-href",d.url)
}if(d.webtrack){p.setAttribute("data-callback","googleplusCallback");
window.googleplusCallback=window.googleplusCallback||k(d.webtrack)
}c.appendChild(p);
a("googleplus-script",h.googleplus)
}};
if(d.type){this[d.type+"Load"](d.actionType==="popup")
}};(function(){LI.define("megaphone.SocialShareMenu");
var a="#callout-overlay.hovercard-callout.social-share-callout";
function b(){$(a).each(function(){LI.Controls.parseFragment(this)
})
}LI.megaphone.SocialShareMenu=function(e,c){var d=$(e),f;
f=new LI.BalloonCallout(e,c);
f.openEvent.subscribe(b);
return f
}
}());(function(e){var d=window._||e("underscore"),f=window.jQuery||e("jquery"),c=LIModules.imports("asyncRequest"),b=LIModules.imports("BaseControl"),a=LIModules.imports("Events");
LIModules.exports("scripts.FollowToggler",b.extend(function(h){var m={urlAttribute:"href",toggleClass:"is-following",toggleContainerClass:"",actionClassSuffix:"",globalEventSuffix:"",selectedClass:"",loadingClass:"loading",requestMethod:"GET"},g="follow-toggler:",j="action-",o="follow",i="unfollow",n=j+o,k=j+i,l={init:function(q,p){d.defaults(p,m);
h.init.call(this,q,p)
},beforeDecoration:function(){var p=this._config;
this._globalEventSuffix=(p.globalEventSuffix.length)?":"+p.globalEventSuffix:"";
this._followButtonClass="."+n+p.actionClassSuffix;
this._unfollowButtonClass="."+k+p.actionClassSuffix
},attachEventListeners:function(){var p=function(q,r){r.preventDefault();
q(r)
};
this._$el.on("click",this._followButtonClass,d.bind(p,this,d.bind(this.follow,this)));
this._$el.on("click",this._unfollowButtonClass,d.bind(p,this,d.bind(this.unfollow,this)))
},_makeRequest:function(p,r,q){c(this._config.requestMethod,p,{scope:this,success:r,failure:q,custom:{exception:q,error:q}})
},_doAction:function(t,q,u){var s,p,r;
p=d.bind(function(v){t._$toggleContainer.removeClass(this._config.loadingClass);
v(t)
},this);
s=d.wrap(d.bind(this._triggerFailureEvent,this,t,q),p);
u=d.wrap(d.bind(u,this),p);
switch(q){case o:r=t._followUrl;
break;
case i:r=t._unfollowUrl;
break;
default:throw new Error("Unrecognized action")
}t._$toggleContainer.addClass(this._config.loadingClass);
this._makeRequest(r,u,s)
},_triggerFailureEvent:function(q,p){a.trigger(g+p+":failure"+this._globalEventSuffix,q._id,this)
},_triggerSuccessEvent:function(q,p){a.trigger(g+p+":success"+this._globalEventSuffix,q._id,this)
},_afterFollowSuccess:function(p){p._$toggleContainer.addClass(this._config.toggleClass);
p._$unfollowEl.addClass(this._config.selectedClass);
p._$followEl.removeClass(this._config.selectedClass)
},follow:function(p){var q=this._getFollowObj(p);
this._doAction(q,o,function(r){this._afterFollowSuccess(r);
if(d.isFunction(this._followCB)){this._followCB()
}this._triggerSuccessEvent(r,o)
})
},_followCB:null,_afterUnfollowSuccess:function(p){p._$toggleContainer.removeClass(this._config.toggleClass);
p._$unfollowEl.removeClass(this._config.selectedClass);
p._$followEl.addClass(this._config.selectedClass)
},unfollow:function(p){var q=this._getFollowObj(p);
this._doAction(q,i,function(r){this._afterUnfollowSuccess(r);
if(d.isFunction(this._unfollowCB)){this._unfollowCB()
}this._triggerSuccessEvent(r,i)
})
},_unfollowCB:null,_getFollowObj:function(q){var s={},r,p=f(q.target);
s._$toggleContainer=this._config.toggleContainerClass?p.closest("."+this._config.toggleContainerClass):this._$el;
s._$followEl=s._$toggleContainer.find(this._followButtonClass);
s._followUrl=s._$followEl.attr(this._config.urlAttribute);
s._$unfollowEl=s._$toggleContainer.find(this._unfollowButtonClass);
s._unfollowUrl=s._$unfollowEl.attr(this._config.urlAttribute);
r=s._followUrl.match(/(followee|memberId|channels)[=|\/](\d+)/i);
if(r&&r.length>=3){s._id=r[2]
}return s
}};
return l
}))
}(window.require));LI.define("Discovery");
LI.Discovery=function(c,b){if(!c){return
}this.module=c;
this.config=b;
this.highlightedItem=0;
this.numVisible=this.config.numVisible||4;
this.pageWidth=this.config.pageWidth||244;
this.itemWidth=this.config.itemWidth||61;
this.currentItemWidth=this.config.currentItemWidth||65;
this.panelWidth=this.config.panelWidth||278;
this.peekWidth=this.config.peekWidth||27;
this.peek="right";
this.startMargin=0;
this.sliderOffset=this.config.sliderOffset||0;
this.panel=Y$(".discovery-panel",this.module,true);
this.tabSlider=this.module.getElementsByTagName("ol")[0];
this.detailList=this.tabSlider.getElementsByTagName("dl");
this.navNext=YDom.get(this.config.navNext)||Y$(".discovery-next",this.module,true);
this.navPrevious=YDom.get(this.config.navPrevious)||Y$(".discovery-prev",this.module,true);
this.itemList=this.tabSlider.getElementsByTagName("li");
this.imgList=this.tabSlider.getElementsByTagName("img");
this.loader=Y$(".discovery-spinner",this.module,true);
this.itemCount=this.itemList.length;
this.prefetchedPages=this.config.prefetchedPages||3;
this.startPage=0;
this.currentPage=0;
this.maxPages=this.itemCount%this.numVisible===0?(Math.floor(this.itemCount/this.numVisible)-1):Math.floor(this.itemCount/this.numVisible);
this.timer=null;
this.endpoint=this.config.endpoint||"";
this.offset=+this.config.offset||0;
this.fetch=this.config.fetch||false;
this.fetches=[];
this.fetchParams=this.config.fetchParams||{};
this.vieweeId=this.config.viewerId||LI.getQueryStringParam("id");
this.template=this.config.template;
this.max=+this.config.max||false;
this.rootContext=this.config.rootContext||"RightTop.discovery.people";
this.offsetKey=this.config.offsetKey||"offset";
this.recordsKey=this.config.recordsKey||"records";
this.panelTransitions=this.config.panelTransitions||false;
this.nextEvent=new YAHOO.util.CustomEvent("next",this);
this.prevEvent=new YAHOO.util.CustomEvent("prev",this);
if(b.legacy){var d=LI.Bidi,a="margin-"+(d?d.flip("left"):"left");
this.init=function(){YEvent.addListener(this.module,"click",this.handleClick,this,true);
YEvent.addListener(this.module,"focusin",this.handleFocus,this,true);
YEvent.addListener(this.imgList,"mouseover",this.handleHover,this,true);
YEvent.addListener(this.imgList,"mouseout",this.clearTimer,this,true);
this.setupNav();
this.setupTabs();
this.setupIndex();
this.updateHighlight()
};
this.handleClick=function(e){if(YEvent.getTarget(e)===this.navNext){if(this.currentPage<this.maxPages){this.goNext()
}else{if(this.fetch){this.fetchMore()
}}}if(YEvent.getTarget(e)===this.navPrevious){if(this.currentPage>this.startPage){this.goBack()
}}};
this.handleHover=function(f){var g=this,h=YEvent.getTarget(f),e=LI.getDataAttribute(h.parentNode.parentNode,"index");
this.timer=setTimeout(function(){g.updateHighlight(e)
},300)
};
this.goNext=function(){this.currentPage++;
this.startMargin=this.startMargin-this.pageWidth;
YDom.setStyle(this.tabSlider,a,this.startMargin+"px");
this.setupNav();
this.updateHighlight();
this.setupTabs()
};
this.goBack=function(){this.currentPage--;
this.startMargin=this.startMargin+this.pageWidth;
YDom.setStyle(this.tabSlider,a,this.startMargin+"px");
this.setupNav();
this.updateHighlight();
this.setupTabs()
};
this.fetchMore=function(){var e,m,k,i,g,h,j,o,f,n,l;
e=this.endpoint;
k=(this.currentPage*this.numVisible)+this.numVisible+this.offset;
i=this.numVisible*2;
g=this.fetchParams;
h=this.vieweeId;
l="";
j={id:h,offset:k,records:i};
for(m in g){if(g.hasOwnProperty(m)){j[m]=g[m]
}}for(m in j){if(j.hasOwnProperty(m)){l+=m+"="+j[m]+"&"
}}o=function(q){var p;
if(q.responseText){p=q.responseText.RightTop||q.responseText.Discovery||q.responseText
}if((p&&p.discovery&&p.discovery.people&&p.discovery.people.length<this.numVisible)||(this.max&&this.max<=this.itemCount+this.offset+this.numVisible)){this.fetch=false;
this.setupNav()
}if(p&&p.discovery&&p.discovery.people&&p.discovery.people.length>0){p.discovery.people=p.discovery.people.splice(0,this.numVisible);
this.itemCount=this.itemCount+this.numVisible;
this.maxPages++;
this.renderMore(p);
this.setupIndex();
this.goNext()
}LI.hide(this.loader)
};
f=function(){LI.hide(this.loader)
};
n={success:o,failure:f,scope:this};
LI.show(this.loader);
LI.asyncRequest("POST",e,n,l)
};
this.renderMore=function(f){var e=this.tabSlider;
YEvent.purgeElement(this.tabSlider,true);
dust.render(this.template,f.discovery,function(h,g){e.innerHTML+=g
});
YEvent.addListener(this.imgList,"mouseover",this.handleHover,this,true);
YEvent.addListener(this.imgList,"mouseout",this.clearTimer,this,true)
}
}this.init()
};
LI.Discovery.prototype={init:function(){var a=this.prefetchedPages*this.numVisible,b=this.itemCount;
if(a!==b){this.fetch=false
}YDom.addClass(this.module,"discovery-peek-right");
YEvent.addListener(this.module,"click",this.handleClick,this,true);
YEvent.addListener(this.module,"focusin",this.handleFocus,this,true);
YEvent.addListener(this.module,"mouseover",this.handleMouseOver,this,true);
YEvent.addListener(this.module,"mouseout",this.handleMouseOut,this,true);
this.setupNav();
this.setupTabs();
this.setupIndex();
this.updateHighlight()
},handleClick:function(a){if(YEvent.getTarget(a)===this.navNext){if(this.fetches.length&&this.currentPage===this.maxPages-1){YDom.addClass(this.module,"discovery-loading")
}else{if(this.fetch){if(this.currentPage+this.prefetchedPages>=this.maxPages&&this.currentPage<this.maxPages){this.goNext();
this.fetchMore()
}else{if(this.currentPage+this.prefetchedPages<this.maxPages){this.goNext()
}else{if(this.currentPage===this.maxPages){this.fetchMore(true)
}}}}else{if(this.currentPage<this.maxPages){this.goNext()
}}}}if(YEvent.getTarget(a)===this.navPrevious){if(this.currentPage>this.startPage){this.goBack()
}}},handleFocus:function(b){var a;
if(YEvent.getTarget(b).parentNode.parentNode===this.tabSlider){a=LI.getDataAttribute(YEvent.getTarget(b).parentNode,"index");
this.updateHighlight(a)
}},clearTimer:function(){if(this.timer){clearTimeout(this.timer)
}},handleMouseOver:function(c){var d=this,f=YEvent.getTarget(c),b=parseInt(LI.getDataAttribute(YDom.getAncestorByTagName(f,"li"),"index"),10),e=(this.currentPage+1)*this.numVisible,a=(this.currentPage)*this.numVisible;
if(b>=0){this.timer=setTimeout(function(){if(d.peek==="right"&&b===e){d.goTo(b,"right")
}else{if(d.peek==="left"&&b===a){d.goTo(b)
}}d.updateHighlight(b)
},250)
}},handleMouseOut:function(){this.clearTimer()
},emitEvent:function(b){var a=b+"Event";
if(this[a]){this[a].fire({currentPage:this.currentPage,maxPages:this.maxPages,itemsPerPage:this.numVisible,totalItems:this.itemCount})
}},goNext:function(){this.currentPage++;
this.fetchDeferredImages();
this.goTo(this.currentPage*this.numVisible);
this.updateHighlight();
this.setupNav();
this.setupTabs();
this.emitEvent("next")
},goBack:function(){this.currentPage--;
this.goTo(this.currentPage*this.numVisible);
this.updateHighlight();
this.setupNav();
this.setupTabs();
this.emitEvent("prev")
},goTo:function(a,b){b=b||"left";
if(a>=0){if(b==="left"){this.peek="right";
YDom.addClass(this.module,"discovery-peek-right");
YDom.removeClass(this.module,"discovery-peek-left");
this.startMargin=-(a*(this.itemWidth+this.sliderOffset))
}else{this.peek="left";
YDom.addClass(this.module,"discovery-peek-left");
YDom.removeClass(this.module,"discovery-peek-right");
this.startMargin=-((a-this.numVisible)*(this.itemWidth+this.sliderOffset)+this.peekWidth)
}YDom.setStyle(this.tabSlider,"margin-left",this.startMargin+"px")
}},setupNav:function(){if((this.itemCount<=this.numVisible&&!this.fetch)||(this.itemCount<this.numVisible)||(this.max&&this.max-this.offset<=this.numVisible)){this.hideNav()
}else{if(this.currentPage===this.startPage){YDom.addClass(this.navPrevious,"disabled");
YDom.removeClass(this.navNext,"disabled")
}else{if((this.currentPage===this.maxPages&&!this.fetch)||(this.max&&this.max<=this.itemCount+this.offset)){YDom.addClass(this.navNext,"disabled");
YDom.removeClass(this.navPrevious,"disabled")
}else{YDom.removeClass(this.navNext,"disabled");
YDom.removeClass(this.navPrevious,"disabled")
}}}},setupTabs:function(){var d,b=this.itemList,c,a;
for(c=0,a=this.itemCount;
c<a;
c++){if(b[c]){d=Y$("a",this.itemList[c],true);
if(d){YDom.setAttribute(this.itemList[c].getElementsByTagName("a")[0],"tabindex","-1")
}}}for(c=this.currentPage*this.numVisible,a=c+this.numVisible;
c<a;
c++){if(this.itemList[c]){d=Y$("a",this.itemList[c],true);
if(c<this.itemCount&&d){YDom.setAttribute(this.itemList[c].getElementsByTagName("a")[0],"tabindex","0")
}}}},setupIndex:function(){for(var a=0;
a<this.itemCount;
a++){if(this.itemList[a]){LI.setDataAttribute(this.itemList[a],"index",a)
}}},updateHighlight:function(a){YDom.removeClass(this.detailList[this.highlightedItem],"selected");
YDom.removeClass(this.itemList[this.highlightedItem],"discovery-active");
if(a){this.highlightedItem=a
}else{this.highlightedItem=this.currentPage*this.numVisible
}YDom.addClass(this.detailList[this.highlightedItem],"selected");
YDom.addClass(this.itemList[this.highlightedItem],"discovery-active");
if(this.panelTransitions){this.panel.className="discovery-panel";
YDom.addClass(this.panel,LI.getDataAttribute(this.itemList[this.highlightedItem],"type")+"-active")
}},fetchMore:function(n){var a=this.endpoint,k=this.itemCount+this.offset,g=(this.currentPage-this.maxPages+this.prefetchedPages)*this.numVisible,e=this.fetchParams,f=this.vieweeId,b="",j,d,o,m,h;
if(this.fetches.length){for(m=0,h=this.fetches.length;
m<h;
m+=1){k+=this.fetches[m];
g-=this.fetches[m]
}}this.fetches.push(g);
j={};
if(f){j.id=f
}j[this.offsetKey]=k;
j[this.recordsKey]=g;
for(o in e){if(e.hasOwnProperty(o)){j[o]=e[o]
}}for(o in j){if(j.hasOwnProperty(o)){b+=o+"="+j[o]+"&"
}}function p(s){var y=s.responseText,w=y,u=0,z,r,t,v,x=this.max,q=this.offset,l=this.itemCount,A=this.numVisible;
if(y&&y.Discovery){this.rootContext="Discovery.discovery.people"
}if(w){r=this.rootContext.split(".");
for(t=0,v=r.length;
t<v;
t++){if(!w[r[t]]){break
}z=w;
w=w[r[t]]
}u=w.length||0
}this.fetches.shift();
if(u<A||x&&x<=l+q+A){this.fetch=false
}if(YAHOO.lang.isArray(w)&&u>0){this.itemCount+=u;
this.maxPages+=Math.ceil(u/A);
this.renderMore(z);
this.setupIndex();
this.setupNav()
}if((n&&u>0)||YDom.hasClass(this.module,"discovery-loading")){this.goNext();
if(this.fetch&&YDom.hasClass(this.module,"discovery-loading")){this.fetchMore()
}}YDom.removeClass(this.module,"discovery-loading")
}function c(){this.fetches.shift();
YDom.removeClass(this.module,"discovery-loading")
}d={success:p,failure:c,scope:this};
if(n){YDom.addClass(this.module,"discovery-loading")
}LI.asyncRequest("POST",a,d,b)
},renderMore:function(e){var d=this.tabSlider,c=document.createElement("div"),f=document.createDocumentFragment(),b,a;
dust.render(this.template,e,function(h,g){c.innerHTML=g;
for(b=0,a=c.children.length;
b<a;
b+=1){f.appendChild(c.children[0])
}d.appendChild(f)
})
},fetchDeferredImages:function(){var b=this.imgList,a=b.length,d,c,e;
for(d=0;
d<a;
d++){c=b[d];
e=c.getAttribute("data-li-src");
if(e&&e!==c.src){c.src=e
}}},hideNav:function(){LI.hide(this.navNext);
LI.hide(this.navPrevious)
}};LI.define("ViewStateToggle");
LI.ViewStateToggle=LI.BaseControl.extend(function(f){var c={triggerSelector:null,delegateEvent:false,animate:false,animationDuration:250,contentURL:null,viewMoreClass:"state-viewmore",viewLessClass:"state-viewless",viewLoadingClass:"state-viewloading"},g="height",a="button",d="scrollHeight",e="click",b="aria-expanded";
return{beforeDecoration:function(){this._initialHeight=this._$el.height();
this._contentLoaded=false;
this._config=_.defaults(this._config,c);
this._isEventDelegated=this._config.delegateEvent;
this._trigger=this._config.triggerSelector;
this._viewMore=this._config.viewMoreClass;
this._viewLess=this._config.viewLessClass;
this._viewLoading=this._config.viewLoadingClass;
this._isAjax=this._config.contentURL;
this.$buttons=(this._trigger)?$(this._trigger):this._$el.find(a);
if(this._isEventDelegated&&!this._trigger){LI.log("If delegateEvent is set to true, triggerSelector must be specified")
}else{if(!this._isEventDelegated&&this.$buttons.length===0){LI.log("No trigger found. You need to pass a triggerSelector in the config or have a button element nested in your expanding element")
}}if(this._$el.has(this._viewMore).length<=0){this._$el.addClass(this._viewMore)
}this._attachAriaRole()
},attachEventListeners:function(){this._toggleEventListeners(true)
},_attachAriaRole:function(){if(this._isAjax){this.$buttons.find(this._trigger?"a":a).attr("aria-hidden",true)
}},detachEventListeners:function(){this._toggleEventListeners(false)
},_toggleEventListeners:function(j){var h=j?"on":"off",i=this._handleTriggerClick;
if(this._isEventDelegated){this._$el[h](e,this._trigger,i)
}else{this.$buttons[h](e,i)
}},_handleTriggerClick:function(h){h.preventDefault();
if(this._config.contentURL&&!this._contentLoaded){this._contentLoaded=true;
this._toggleClasses(this._viewLess+" "+this._viewMore,this._viewLoading);
this._$el.load(this._config.contentURL,_.bind(this._afterContentLoaded,this))
}else{if(this._$el.hasClass(this._viewMore)||this._$el.hasClass(this._viewLoading)){this.expand();
this._toggleAriaExpand()
}else{this.collapse()
}}},_toggleAriaExpand:function(){var h;
if(this._isAjax){h=this._$el.attr(b);
this._$el.attr(b,!h)
}},_afterContentLoaded:function(){LI.Controls.parseFragment(this._$el);
if(!this._isEventDelegated){this.$buttons=this._$el.find(a);
this.attachEventListeners()
}this._newHeight=this._$el.prop(d);
this.expand();
this._toggleAriaExpand();
this._$el.focus()
},_toggleClasses:function(i,h){this._$el.removeClass(i).addClass(h)
},collapse:function(){this._toggleClasses(this._viewLess,this._viewMore);
if(this._config.animate){this._$el.animate({height:this._initialHeight},this._config.animationDuration)
}else{this._$el.css(g,this._initialHeight)
}},expand:function(){if(!this._newHeight){this._newHeight=this._$el.prop(d)
}this._toggleClasses(this._viewMore+" "+this._viewLoading,this._viewLess);
if(this._config.animate){this._$el.animate({height:this._newHeight},this._config.animationDuration)
}else{this._$el.css(g,this._newHeight)
}}}
});(function(c){var d=window.jQuery||c("jquery"),a=LIModules.imports("BaseControl"),b=a.extend(function(){return{attachEventListeners:function(){var e=this;
this._$el.on("submit",function(f){f.preventDefault();
e._handleFormSubmit()
})
},_handleFormSubmit:function(){var f=this._$el,j=f.attr("method"),g=f.attr("data-li-action")||f.attr("action"),h=f.serialize(),e=_.bind(this._successCallback,this),i=_.bind(this._failureCallback,this);
if(!this._validateForm()){return false
}if(g.indexOf("?")>-1){g=g.split("?");
h=g[1]+"&"+h;
g=g[0]
}d.ajax({type:j,beforeSend:this._beforeSend,url:g,data:h}).done(e).fail(i)
},_showError:function(h,g){var f=h.attr("aria-describedby"),e=d("#"+f);
h.addClass("error");
e.addClass("show");
if(g){e.html(g)
}},_validateForm:function(){return true
},_successCallback:function(e){},_failureCallback:function(e){},_beforeSend:function(e){}}
});
LIModules.exports("AJAXFormSubmit",b)
}(window.require));LI.define("BizPagesTypeAhead");
LI.BizPagesTypeAhead=function(c,a,f,d){var n=this,g=true,j=false,h=null;
this.node=c;
d=d||{};
this.setLargeImg=(YDom.getAncestorByClassName(c,"quotes"))?g:j;
this.hiddenInputFieldId=YDom.getAttribute(c,"data-li-input");
this.thumbImgId=YDom.getAttribute(c,"data-li-img");
this.defaultImgSrc=YDom.getAttribute(c,"data-li-noimg");
function l(){var q,p,r,o;
if(d.taType==="group"){q={create:function(s){return LI.DataSource.Helper.createXHRDataSource(a,LI.DataSource.Helper.defaultXHRConfig)
}}
}else{if(d.isDark){q="TYPE_MY_NETWORK"
}else{q="TYPE_ALL_FIRST_DEGREE_CONNECTIONS"
}}if($.isEmptyObject(d)){r=["DEFAULT","USE_NO_RESULTS"];
o=["DEFAULT"]
}else{r=["USE_NO_RESULTS"];
o=["DEFAULT","FORCE_SELECTION"]
}p=new LI.Typeahead2(c,{source:q,handleEventAs:r,renderAs:o});
m(p);
return p
}function b(){var p=YDom.get(n.hiddenInputFieldId),o=n.defaultImgSrc,q=YDom.get(n.thumbImgId);
n.node.value="";
p.value="";
YDom.setAttribute(q,"src",o);
YDom.setAttribute(q,"alt","");
LI.GhostLabel.Manager.show(n.node.form.id)
}function e(t,q){var u=q[2],s=u.imageUrl||n.defaultImgSrc,p=u.displayName||"",o=u.id||"",v=YDom.get(n.thumbImgId),r=YDom.get(n.hiddenInputFieldId);
r.value=o;
if(n.setLargeImg){s=s.replace(/shrink_40_40/,"shrink_80_80")
}if(v&&s){YDom.setAttribute(v,"src",s);
if(p){YDom.setAttribute(v,"alt",p)
}}}function m(o){var p=d.processExtraDataCustomMethod||e,q=d.enforceSelectionCustomMethod||b;
o.onItemSelect=function(s,r){if(p&&typeof(p)==="function"){p(s,r)
}};
o.onUnmatchedItemSelect=function(){if(q&&typeof(q)==="function"){q()
}}
}if(!LI.BizPagesTypeAhead.__cache&&!d.taType){if(!LI.BizPagesTypeAhead._isLoadingCache){LI.BizPagesTypeAhead._isLoadingCache=g;
YAHOO.util.Connect.asyncRequest("GET",a,{success:function(p){try{LI.BizPagesTypeAhead.__cache=JSON.parse(p.responseText);
LI.BizPagesTypeAhead._isLoadingCache=j;
if(f&&LI.BizPagesTypeAhead.__cache.resultList){LI.BizPagesTypeAhead.__cache.resultList.unshift(f)
}this.typeAhead=l()
}catch(o){LI.BizPagesTypeAhead.__cache=h;
LI.BizPagesTypeAhead._isLoadingCache=j
}},failure:function(){LI.BizPagesTypeAhead.__cache=h;
LI.BizPagesTypeAhead._isLoadingCache=j
}})
}else{var i=20;
var k=setInterval(function(){if(!LI.BizPagesTypeAhead._isLoadingCache){clearInterval(k);
this.typeAhead=l();
return
}if(i===0){clearInterval(k);
return
}i--
},500)
}}else{this.typeAhead=l()
}};LI.define("BizPagesEditAdmins");
LI.BizPagesEditAdmins=(function(){var n,s,e,m,i,k,q,d,a,j=",",t="",f=true;
function b(u){var v=/id=(\d+)/.exec(u);
if(v&&v[1]){return v[1]
}return u
}function p(){return(n.value.split(j))
}function g(A,y){var L=YAHOO.lang,I=y[2],K=(L.isUndefined(I.imageUrl)||L.isNull(I.imageUrl))?YDom.getAttribute(s,"data-li-defaultimgurl"):I.imageUrl,C=I.displayName||t,x=I.subLine||t,w=I.id||t,H=I.url.replace("/leo/",""),G,J,z,D,u,F,E,B,v;
q=q||YDom.getAttribute(s,"data-li-maxadmins");
d=YDom.get(n.id+"-error");
if(w){G=p();
if(!c.contains(G,w)){if(G.length>=q){YDom.setAttribute(d,"role","alert");
a=a||LI.i18n.get("maxNumAllowed");
LI.injectAlert(a,"error",d);
YAHOO.lang.later(3000,this,function(){LI.removeAlert(d,f)
})
}else{G.push(w);
G=c.numSort(G);
if(G[0]==""){G.shift()
}n.value=G.join(j);
J=i.cloneNode(true);
z=J.getElementsByTagName("a");
u=z[0];
H=YDom.getAttribute(u,"href").replace("typeahead","")+H;
u.href=H;
D=u.getElementsByTagName("img")[0];
D.src=K;
D.alt=C;
E=z[1];
E.href=H;
E.innerHTML=C;
B=J.getElementsByTagName("p")[1];
B.innerHTML=x;
e.add(J);
LI.show(J);
LI.highlight(J)
}}s.value=""
}}function o(u,v){LI.GhostLabel.Manager.show(n.form.id)
}function h(y){var x=YDom.getAncestorByTagName(y,"li"),v=x.getElementsByTagName("a")[0].href,u=b(v),w=p();
if(u){n.value=c.numSort(c.removeByValue(w,u)).join(j);
LI.fade(x);
LI.later(this,300,function(){try{e.remove(x)
}catch(z){}})
}}function l(u){if(u.value==="A"){LI.show(k);
LI.hide(postit)
}else{LI.hide(k);
LI.show(postit)
}}var r=function(z){var w,y=function(A){w=YDom.get(A)
},x=function(A){var B=YDom.getFirstChild(w);
if(B){YDom.insertBefore(A,B)
}else{w.appendChild(A)
}},u=function(A){w.removeChild(A)
},v=function(){return YDom.getLastChild(w)
};
y(z);
return{add:x,remove:u,getLastChild:v,node:w}
};
var c=(function(){return{removeByIndex:function(u,v){u.splice(v,1)
},removeByValue:function(v,x){for(var w=0,u=v.length;
w<u;
w++){if(v[w]==x){v.splice(w,1);
break
}}return v
},numSort:function(u){u.sort(function(w,v){return w-v
});
return u
},contains:function(v,x){for(var w=0,u=v.length;
w<u;
w++){if(v[w]==x){return true
}}return false
}}
})();
YEvent.on(window,"load",function(){s=YDom.get("ta-memberName");
n=YDom.get(YDom.getAttribute(s,"data-li-input"));
e=r("admin-manage-list");
m=e.getLastChild();
if(!m){return
}i=m.cloneNode(true);
k=YDom.get("admin-manage");
postit=YDom.get("attn-post-it");
YEvent.on(e.node,"click",function(u){var v=YEvent.getTarget(u);
if(YDom.hasClass(v,"admin-remove")){YEvent.preventDefault(u);
h(v)
}});
YEvent.on("admin-options","click",function(u){var v=YEvent.getTarget(u);
if(v.type==="radio"){l(v)
}})
});
return{addAdmin:g,enforceSelection:o}
})();(function(){var a=/Firefox\/(\d+\.\d+)/.exec(navigator.userAgent);
if(a&&a[1]&&parseFloat(a[1])<=3.6){var c=dust.escapeHtml,f="--",d=new RegExp(f,"g");
dust.escapeHtml=function(h){h=c(h);
if(typeof h==="string"&&h.indexOf(f)>-1){return h.replace(d,"&#45;&#45;")
}return h
}
}var b="__i18n__",g;
if(dust.helpers&&dust.helpers.i18n){g=dust.helpers.i18n;
dust.helpers.i18n=function(j,l,i,m){var k,h=m.templateName||l.getTemplateName();
if(m.key!=="undefined"&&h!=="undefined"){k=b+h+"__"+m.key;
if(dust.cache&&typeof dust.cache[k]==="function"){return dust.cache[k](j,l)
}}return g(j,l,i,m)
}
}LI.define("Profile.helper.injectAlertA11y");
var e;
LI.Profile.helper.injectAlertA11y=function(i,h){if(!i){return
}h=h||"success";
e=e||$("#alert-a11y");
if(!e.length){return
}LI.injectAlert({node:e[0],message:i,type:h})
};
LI.Profile.helper.replaceElem=function(i,k){var h=$(i),j=$(k);
if(h.length&&j.length){j.before(h).hide()
}}
})();$.fn.MiniProfile=function(c,b,a){this.id=c;
this.$panel=b;
this.content="";
this.manager=a;
this.followToggler=""
};
$.extend($.fn.MiniProfile.prototype,{calculatePosition:function(y){var j=this,f=j.$panel,g=f.find(".new-miniprofile-content"),p=$(window).height(),x=$(window).width(),h=$(document).scrollTop(),b=$(document).scrollLeft(),m={},i=0,w=0,e=0,c=0,k,v,u={},o=j.manager.getDefaultShownBelow(),l=false,n=false,r=g.hasClass("company-miniprofile-content"),s=80,d=80,q=r?-70:-115,a=r?15:10,t=10;
$("img",y).each(function(z){y=$(this);
return false
});
i=y.innerHeight();
w=y.innerWidth();
f.css({"visibility":"hidden"}).removeClass("hidden");
e=g.outerHeight();
c=g.outerWidth();
f.addClass("hidden").css({"visibility":"visible"});
k={x:y.offset().left+(w/2),y:y.offset().top};
v={x:y.offset().left+(w/2),y:y.offset().top+i};
if(v.y+e<h+p){n=true
}if(k.y-e-s>h){l=true
}if(o&&n){m.bottom=true
}else{if(!o&&l){m.top=true
}else{if(n){m.bottom=true
}else{m.top=true
}}}if(k.x+c+q<b+x){m.right=true
}else{if(k.x-c+d>b){m.left=true
}else{m.right=true
}}if(m.top){u.y=k.y-e-a
}if(m.bottom){u.y=v.y+a
}if(m.left){u.x=k.x-c+d
}if(m.right){u.x=k.x+q-t
}return{x:u.x,y:u.y,directions:m}
},id:function(){return this.id
},getContent:function(){return this.content
},show:function(a){var b=this;
b.$node=a;
b.manager.loadProfile(a,{success:function(f){var d=b.manager.config,e=b.manager,h=b.$panel,g=e.$lastSelectedNode,c;
if(f){b.content=f;
if(e.areDifferentLinkNodes(g,a)){return
}h.html(f);
LI.Controls.parseFragment(h.get(0));
c=h.find(".company-miniprofile-content");
if(c.length){if(!b.followToggler){LI.Events.bind("follow-toggler:follow:success follow-toggler:unfollow:success",_.bind(b.afterFollowingCompany,b))
}b.followToggler=new LI.scripts.FollowToggler(c,{toggleContainerClass:"follow-actions-container",selectedClass:"current",companyId:b.id})
}var i=b.calculatePosition(a);
if(i){h.css({"visibility":"hidden"}).removeClass("hidden").offset({top:i.y,left:i.x}).addClass("hidden").css({"visibility":"visible"});
b.setPointer(i.directions);
b.manager.showPanel(h)
}}}});
return b
},afterFollowingCompany:function(c,a){if(this.id===a._config.companyId){var b=$("<div>").append(a._$el.clone()).html();
this.manager.updateMiniProfileInCache(this.$node,b)
}},setPointer:function(f){var e=this.$panel,d=[],b,c;
d=[];
for(var a in f){d.push(a)
}e.find(".triangle").removeClass("top bottom left right").addClass(d.join(" "));
if(e.find(".miniprofile-shared-connections").length){b="triangle-bottom";
c="triangle-bottom-grey"
}else{b="triangle-bottom-grey";
c="triangle-bottom"
}e.find("."+b).removeClass(b).addClass(c)
}});
$.fn.MiniProfileManager=(function(b){var a={};
$.extend(a,{config:b,profileRegistry:{},defaultShownBelow:false,$panel:null,showPanelTimer:null,currentProfileId:null,mouseInsidePanel:false,mouseInsideLink:false,$lastSelectedNode:null,$lastMouseOverNode:null,isHiding:null,initPanel:function(){var d=this,c=d.config,e;
if(!d.$panel){e=$("<div></div>");
d.$panel=e;
e.attr("id",d.config.PANEL_ID_NAME);
$("body").append(e);
e.css("z-index",d.config.zIndex);
e.mouseenter(function(){d.mouseInsidePanel=true
});
e.mouseleave(function(){d.mouseInsidePanel=false
})
}},showPanel:function(c){c.removeClass("hidden")
},hidePanel:function(c){c.addClass("hidden")
},isPanelHidden:function(c){return c.hasClass("hidden")
},setDefaultShownBelow:function(c){this.defaultShownBelow=c
},getDefaultShownBelow:function(){return this.defaultShownBelow
},delayShowPanel:function(d,e){var c=this;
c.showPanelTimer=setTimeout(function(){if(c.mouseInsideLink){d.show(e)
}c.showPanelTimer=null
},b.SHOW_PANEL_DELAY)
},delayHidePanel:function(g,c){var e=this,d=e.config,f;
if(e.mouseInsidePanel){return
}e.isHiding=true;
setTimeout(function(){var h=e.areDifferentLinkNodes(c,e.$lastSelectedNode);
if((!e.mouseInsidePanel&&!e.mouseInsideLink)||(e.mouseInsideLink&&h)){e.hidePanel(g)
}if(e.isHiding){e.isHiding=false;
f=e.registerMiniProfile(e.$lastSelectedNode);
if(h){e.delayShowPanel(f,e.$lastSelectedNode)
}}},d.HIDE_PANEL_DELAY)
},loadProfile:function(d,n){var l=this,g=l.config,f="throw /*LI:DBE*/ 1;",e=d.attr(g.MINIPROFILE_JS_ATTRIBUTE_NAME),o=d.attr(g.MINIPROFILE_TEMPLATE_ATTRIBUTE_NAME)||"tl/shared/profile/mini_profile_shell",c=d.attr(g.MINIPROFILE_URL_ATTRIBUTE_NAME),j=(typeof window.console!=="undefined")?window.console:{log:$.noop()},h,m,k;
if(c){m=l.getProfileContent(c);
if(m){n.success(m);
return
}}if(e){$.getScript(e)
}var i=function(p){if(p){n.success(p);
$("body").trigger(g.NEW_CONTENT_EVENT)
}};
$.ajax({type:"GET",url:c,headers:{"X-IsAJAXForm":1},data:"",dataType:"text",success:function(u,p,q){var s,r=false,t=LI.Profile2,w=q.getResponseHeader("content-type")||"";
if(w.indexOf("html")!==-1){n.success(u)
}else{if(t&&t.Render){t.Render.render({template:o,response:q,success:i})
}else{if(o&&window.dust){try{u=u.replace(f,"");
s=$.parseJSON(u);
dust.render(o,s.content,function(y,x){if(y){return
}i(x)
})
}catch(v){}}}}},error:function(p,r,q){}})
},getProfileContent:function(c){var d=this.profileRegistry[c];
if(!d){return null
}return d.getContent()
},getMiniProfile:function(e){var d=this,c=e.attr(b.MINIPROFILE_URL_ATTRIBUTE_NAME);
return d.profileRegistry[c]
},registerMiniProfile:function(h){var f=this,e=f.config,g=f.getMiniProfile(h),c,d;
c=h.attr(e.MINIPROFILE_ID_ATTRIBUTE_NAME);
if(!c){c="LI-"+Math.floor(Math.random()*9999999);
h.attr(e.MINIPROFILE_ID_ATTRIBUTE_NAME,c)
}if(!g){d=h.attr(e.MINIPROFILE_URL_ATTRIBUTE_NAME);
g=new $.fn.MiniProfile(c,f.$panel,f);
f.profileRegistry[d]=g
}return g
},updateMiniProfileInCache:function(e,d){var c=e.attr(b.MINIPROFILE_URL_ATTRIBUTE_NAME);
this.profileRegistry[c].content=d
},areDifferentLinkNodes:function(e,d){var f=this,c=f.config;
return(!e||!d||e.attr(c.MINIPROFILE_ID_ATTRIBUTE_NAME)!==d.attr(c.MINIPROFILE_ID_ATTRIBUTE_NAME))
},handleMouseEvent:function(k){var j=this,f=j.config,e=$(k.target),g,i,c,h,d;
if(!j.$panel){j.initPanel()
}j.$lastMouseOverNode=e;
g=e.closest("."+f.MINIPROFILE_SEARCH_CLASS_NAME);
if(g.length){j.mouseInsideLink=true;
h=j.registerMiniProfile(g);
if(!j.currentProfileId||j.currentProfileId!==h.id){j.currentProfileId=h.id;
if(j.showPanelTimer){d=j.showPanelTimer;
window.clearTimeout(d);
d=null
}j.$lastSelectedNode=g;
if(j.isHiding){}else{j.isHiding=false;
j.delayShowPanel(h,g)
}}}else{j.mouseInsideLink=false;
if(j.mouseInsidePanel){return
}j.currentProfileId=null;
if(!j.isPanelHidden(j.$panel)&&j.$panel.find("."+f.MINIPROFILE_CONTENT_CLASS_NAME).length){j.delayHidePanel(j.$panel,j.$lastSelectedNode)
}}}});
return a
}({SHOW_PANEL_DELAY:500,HIDE_PANEL_DELAY:400,PANEL_ID_NAME:"lui-mini-profile-body",PANEL_ZINDEX:1007,MINIPROFILE_SEARCH_CLASS_NAME:"new-miniprofile-container",MINIPROFILE_CONTENT_CLASS_NAME:"new-miniprofile-content",MINIPROFILE_ID_ATTRIBUTE_NAME:"data-li-miniprofile-id",MINIPROFILE_JS_ATTRIBUTE_NAME:"data-li-getjs",MINIPROFILE_TEMPLATE_ATTRIBUTE_NAME:"data-li-tl",MINIPROFILE_URL_ATTRIBUTE_NAME:"data-li-url",NEW_CONTENT_EVENT:"show-mini-profile"}));
$(function(){var b=$(document);
function a(d){$.fn.MiniProfileManager.handleMouseEvent(d)
}(function c(){if(b.on){b.on("mouseover",a)
}}())
});(function(){dust.register("tl/shared/profile/mini_profile_info",ag);
function ag(av,au){return av.section(au.get("MiniProfile"),au,{"block":af},null)
}function af(av,au){return av.section(au.get("mini_profile"),au,{"block":ad},null)
}function ad(av,au){return av.exists(au.get("showFollow"),au,{"block":aa},null).write('<div class="miniprofile-body ').helper("eq",au,{"block":X},{"key":R,"value":"enabled"}).write('"><p class="photo">').exists(au.get("pictureId"),au,{"else":O,"block":M},null).write('</p><p class="name"><a tabindex="-1" aria-hidden="true" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-name-link">').reference(au.get("full_name"),au,"h").write("</a>").exists(au.get("networkDistance"),au,{"block":J},null).helper("eq",au,{"block":v},{"key":p,"value":"enabled"}).write('</p><div class="title" title="').reference(au.get("headline"),au,"h").write('">').reference(au.get("fmt__trunc_headline"),au,"h").write('</div><div class="miniprofile-actions">').helper("eq",au,{"else":n,"block":e},{"key":W,"value":"unMention"}).write("</div></div>").exists(au.get("showPositionIndustry"),au,{"block":T},null)
}function aa(av,au){return av
}function X(av,au){return av.exists(au.get("isInfluencer"),au,{"block":U},null)
}function U(av,au){return av.write("is-expanded")
}function R(av,au){return av.reference(au.get("lix_influencerIcon"),au,"h")
}function O(av,au){return av.write('<a tabindex="-1" aria-hidden="true" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-photo-placeholder"><img aria-hidden="true" alt="').reference(au.get("full_name"),au,"h").write('" src="').reference(au.get("no_photo_img_link"),au,"h").write('" width="100" height="100" /></a>')
}function M(av,au){return av.write('<a tabindex="-1" aria-hidden="true" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-photo"><img aria-hidden="true" tabindex="-1" alt="').reference(au.get("full_name"),au,"h").write('" src="').reference(au.get("resolved_photo"),au,"h").write('"/></a>')
}function J(av,au){return av.helper("gt",au,{"block":z},{"key":au.get("networkDistance"),"value":"0","type":"number"})
}function z(av,au){return av.write('<span class="degree">').helper("partial",au,{"block":x},{"distanceP":au.get("networkDistance"),"fNameP":au.get("firstName"),"lNameP":au.get("lastName")}).write("</span>")
}function x(av,au){return av.partial("tl/shared/degree_icon",au,null)
}function v(av,au){return av.exists(au.get("isInfluencer"),au,{"block":t},null)
}function t(av,au){return av.partial("tl/shared/badge_image_icon",au,{"iconTypeP":"influencer","influencerName":r,"trackingCode":"inf_bdg_prof"})
}function r(av,au){return av.reference(au.get("firstName"),au,"h")
}function p(av,au){return av.reference(au.get("lix_influencerIcon"),au,"h")
}function n(av,au){return av.exists(au.get("showPositionIndustry"),au,{"block":l},null).exists(au.get("networkDistance"),au,{"else":d,"block":am},null)
}function l(av,au){return av.write('<div class="location-industry">').exists(au.get("fmt_location"),au,{"block":j},null).exists(au.get("fmt_industry"),au,{"block":f},null).write("</div>")
}function j(av,au){return av.reference(au.get("fmt_location"),au,"h",["s"]).exists(au.get("fmt_industry"),au,{"block":i},null)
}function i(av,au){return av.write("<span>&nbsp;&nbsp;|&nbsp;&nbsp;</span>")
}function f(av,au){return av.reference(au.get("fmt_industry"),au,"h")
}function d(av,au){return av.exists(au.get("showFollow"),au,{"else":b,"block":ao},null)
}function b(av,au){return av.exists(au.get("showConnect"),au,{"else":at,"block":aq},null)
}function at(av,au){return av.write('<a class="miniprofile-button bt-secondary" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function aq(av,au){return av.write('<a class="miniprofile-button bt-connect" href="').reference(au.get("connect"),au,"h").write('" role="button">').reference(au.get("miniprofile_connect"),au,"h").write("</a>")
}function ao(av,au){return av.write('<a class="miniprofile-button bt-connect" href="').reference(au.get("follow"),au,"h").write('" role="button">').reference(au.get("miniprofile_follow"),au,"h").write("</a>")
}function am(av,au){return av.helper("gt",au,{"block":ak},{"key":au.get("networkDistance"),"value":"-1","type":"number"})
}function ak(av,au){return av.helper("select",au,{"block":ai},{"key":g})
}function ai(av,au){return av.helper("eq",au,{"block":ah},{"value":"0"}).helper("eq",au,{"block":ab},{"value":"1"}).helper("eq",au,{"block":E},{"value":"2"}).helper("default",au,{"block":q},null)
}function ah(av,au){return av.write('<a class="miniprofile-button bt-view-profile" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function ab(av,au){return av.exists(au.get("showSendMessage"),au,{"else":Y,"block":I},null)
}function Y(av,au){return av.exists(au.get("showFollow"),au,{"else":V,"block":P},null)
}function V(av,au){return av.exists(au.get("showViewProfile"),au,{"block":S},null)
}function S(av,au){return av.write('<a class="miniprofile-button bt-view-profile" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function P(av,au){return av.write('<a class="miniprofile-button bt-connect" href="').reference(au.get("follow"),au,"h").write('">').reference(au.get("miniprofile_follow"),au,"h").write("</a>").exists(au.get("showViewProfile"),au,{"block":L},null)
}function L(av,au){return av.write('<a class="miniprofile-button bt-secondary" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function I(av,au){return av.write('<a class="miniprofile-button bt-send" href="').reference(au.get("send_message"),au,"h").write('">').reference(au.get("miniprofile_send_a_message"),au,"h").write("</a>").exists(au.get("showViewProfile"),au,{"block":G},null)
}function G(av,au){return av.write('<a class="miniprofile-button bt-secondary" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function E(av,au){return av.exists(au.get("showConnect"),au,{"else":D,"block":u},null)
}function D(av,au){return av.exists(au.get("showFollow"),au,{"else":B,"block":y},null)
}function B(av,au){return av.exists(au.get("showViewProfile"),au,{"block":A},null)
}function A(av,au){return av.write('<a class="miniprofile-button bt-view-profile" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function y(av,au){return av.write('<a class="miniprofile-button bt-connect" href="').reference(au.get("follow"),au,"h").write('">').reference(au.get("miniprofile_follow"),au,"h").write("</a>").exists(au.get("showViewProfile"),au,{"block":w},null)
}function w(av,au){return av.write('<a class="miniprofile-button bt-secondary" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function u(av,au){return av.write('<a class="miniprofile-button bt-connect" href="').reference(au.get("connect"),au,"h").write('">').reference(au.get("miniprofile_connect"),au,"h").write("</a>").exists(au.get("showViewProfile"),au,{"block":s},null)
}function s(av,au){return av.write('<a class="miniprofile-button bt-secondary" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function q(av,au){return av.exists(au.get("showFollow"),au,{"else":o,"block":h},null)
}function o(av,au){return av.exists(au.get("showConnect"),au,{"else":m,"block":k},null)
}function m(av,au){return av.write('<a class="miniprofile-button bt-secondary" href="').reference(au.get("pview"),au,"h").write('&trk=miniprofile-primary-view-button">').reference(au.get("miniprofile_view_profile"),au,"h").write("</a>")
}function k(av,au){return av.write('<a class="miniprofile-button bt-connect" href="').reference(au.get("connect"),au,"h").write('">').reference(au.get("miniprofile_connect"),au,"h").write("</a>")
}function h(av,au){return av.write('<a class="miniprofile-button bt-connect" href="').reference(au.get("follow"),au,"h").write('">').reference(au.get("miniprofile_follow"),au,"h").write("</a>")
}function g(av,au){return av.reference(au.get("networkDistance"),au,"h")
}function e(av,au){return av.notexists(au.get("excludeUnmention"),au,{"block":c},null)
}function c(av,au){return av.partial("tl/shared/mentions/remove_mention_dialog_content",au,null).exists(au.get("groupID"),au,{"else":a,"block":Z},null).helper("jsControl",au,{},{"name":"RemoveMentionDialog"})
}function a(av,au){return av.exists(au.get("shareID"),au,{"block":ar},null).exists(au.get("commentID"),au,{"block":an},null)
}function ar(av,au){return av.exists(au.get("updateID"),au,{"block":ap},null)
}function ap(av,au){return av.write('<a class="miniprofile-button bt-secondary remove-mention-confirm" href="').reference(au.get("remove_mention_from_update_link"),au,"h").write('" data-li-mention-class="').reference(au.get("shareID"),au,"h").write("-").reference(au.get("memberID"),au,"h").write('">').reference(au.get("miniprofile_remove_mention"),au,"h").write("</a>")
}function an(av,au){return av.exists(au.get("updateID"),au,{"block":al},null)
}function al(av,au){return av.exists(au.get("discussionScopeID"),au,{"else":aj,"block":ae},null)
}function aj(av,au){return av.write('<a class="miniprofile-button bt-secondary remove-mention-confirm" href="').reference(au.get("remove_mention_from_article_comment_link"),au,"h").write('" data-li-mention-class="').reference(au.get("commentID"),au,"h").write("--").reference(au.get("memberID"),au,"h").write('">').reference(au.get("miniprofile_remove_mention"),au,"h").write("</a>")
}function ae(av,au){return av.exists(au.get("discussionID"),au,{"block":ac},null)
}function ac(av,au){return av.write('<a class="miniprofile-button bt-secondary remove-mention-confirm" href="').reference(au.get("remove_mention_from_comment_link"),au,"h").write('" data-li-mention-class="').reference(au.get("commentID"),au,"h").write("-").reference(au.get("discussionID"),au,"h").write("-").reference(au.get("memberID"),au,"h").write('">').reference(au.get("miniprofile_remove_mention"),au,"h").write("</a>")
}function Z(av,au){return av.write('<a class="miniprofile-button bt-secondary remove-mention-confirm" href="').reference(au.get("remove_mention_from_group_discussion_comment"),au,"h").write('" data-li-mention-class="').reference(au.get("commentID"),au,"h").write("-").reference(au.get("discussionScopeID"),au,"h").write("-").reference(au.get("groupID"),au,"h").write("-").reference(au.get("memberID"),au,"h").write('">').reference(au.get("miniprofile_remove_mention"),au,"h").write("</a>")
}function W(av,au){return av.reference(au.get("context"),au,"h")
}function T(av,au){return av.write('<div class="miniprofile-summary-sections">').exists(au.get("currentCompaniesSummary"),au,{"block":Q},null).exists(au.get("pastCompaniesSummary"),au,{"block":K},null).exists(au.get("educationsSummary"),au,{"block":F},null).write("</div>")
}function Q(av,au){return av.helper("gt",au,{"block":N},{"key":au.getPath(false,["currentCompaniesSummary","length"]),"value":"0","type":"number"})
}function N(av,au){return av.write('<div class="label summary-label">').reference(au.get("miniprofile_current_position"),au,"h").write('</div><div class="summary">').reference(au.get("_truncated_current_position"),au,"h").write("</div>")
}function K(av,au){return av.helper("gt",au,{"block":H},{"key":au.getPath(false,["pastCompaniesSummary","length"]),"value":"0","type":"number"})
}function H(av,au){return av.write('<div class="label summary-label">').reference(au.get("miniprofile_past_position"),au,"h").write('</div><div class="summary">').reference(au.get("_truncated_past_position"),au,"h").write("</div>")
}function F(av,au){return av.helper("gt",au,{"block":C},{"key":au.getPath(false,["educationsSummary","length"]),"value":"0","type":"number"})
}function C(av,au){return av.write('<div class="label summary-label">').reference(au.get("miniprofile_education"),au,"h").write('</div><div class="summary">').reference(au.get("_truncated_educations"),au,"h").write("</div>")
}return ag
})();
(function(){dust.register("mini_profile_info",dust.cache["tl/shared/profile/mini_profile_info"])
})();(function(){dust.register("tl/shared/profile/sorted_shared_connections",p);
var w={"fmtName":h,"viewProfileLink":b,"picLink":f,"img_src":e,"connectionsLink":l};
function p(z,y){y=y.shiftBlocks(w);
return z.exists(y.get("MiniProfile"),y,{"else":o,"block":s},null)
}function o(z,y){y=y.shiftBlocks(w);
return z.section(y.get("sorted_shared_connections"),y,{"block":m},null)
}function m(z,y){y=y.shiftBlocks(w);
return z.write("<ul>").section(y.get("sortedSharedConnections"),y,{"block":k},{"numConnections":"4"}).write("</ul>")
}function k(z,y){y=y.shiftBlocks(w);
return z.helper("lt",y,{"block":v},{"key":u,"value":t,"type":"number"})
}function i(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("full_name"),y,"h")
}function g(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("profile_link"),y,"h",["s"])
}function f(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("pic_link_1"),y,"h",["s"])
}function e(z,y){y=y.shiftBlocks(w);
return z.exists(y.get("pictureId"),y,{"else":d,"block":c},null)
}function d(z,y){y=y.shiftBlocks(w);
return z.write("/scds/common/u/img/icon/icon_no_photo_40x40.png")
}function c(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("linkAuto_media_1"),y,"h",["s"])
}function v(z,y){y=y.shiftBlocks(w);
return z.write('<li><a href="').block(y.getBlock("viewProfileLink"),y,{},null).write('"><img class="photo" src="').block(y.getBlock("img_src"),y,{},null).write('" alt="').block(y.getBlock("fmtName"),y,{},null).write('" /><span class="name"> ').block(y.getBlock("fmtName"),y,{},null).write(' </span><span class="headline"> ').reference(y.get("headline"),y,"h").write(" </span></a></li>")
}function u(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("$idx"),y,"h")
}function t(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("maxIdx"),y,"h")
}function s(z,y){y=y.shiftBlocks(w);
return z.exists(y.getPath(false,["sorted_shared_connections","sortedSharedConnections"]),y,{"block":r},null)
}function r(z,y){y=y.shiftBlocks(w);
return z.section(y.get("mini_profile"),y,{"block":q},null)
}function q(z,y){y=y.shiftBlocks(w);
return z.write('<div class="miniprofile-shared-connections">').section(y.get("sorted_shared_connections"),y,{"block":n},null).write("</div>")
}function n(z,y){y=y.shiftBlocks(w);
return z.write('<div class="shared-connections">').write('<span class="label"><a href="').block(y.getBlock("connectionsLink"),y,{},null).write('"><span class="connections-label">&nbsp;</span></a>').reference(y.get("sharedConnectionsCount"),y,"h").write("</span><ul>").section(y.get("sortedSharedConnections"),y,{"block":j},null).write("</ul></div>")
}function l(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("connections_link"),y,"h",["s"])
}function j(z,y){y=y.shiftBlocks(w);
return z.write('<li><a href="').block(y.getBlock("viewProfileLink"),y,{},null).write('" title="').block(y.getBlock("fmtName"),y,{},null).write('"><img src="').exists(y.getPath(true,["pictureId"]),y,{"else":a,"block":x},null).write('" alt="').block(y.getBlock("fmtName"),y,{},null).write('" width="30" height="30"/></a></li>')
}function h(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("full_name"),y,"h")
}function b(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("profile_link"),y,"h",["s"])
}function a(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("media_gh"),y,"h")
}function x(z,y){y=y.shiftBlocks(w);
return z.reference(y.get("media_link"),y,"h")
}return p
})();
(function(){dust.register("sorted_shared_connections",dust.cache["tl/shared/profile/sorted_shared_connections"])
})();(function(){dust.register("tl/shared/profile/mini_profile_shell",c);
function c(e,d){return e.section(d.get("MiniProfile"),d,{"block":b},null)
}function b(e,d){return e.exists(d.get("full_name"),d,{"block":a},null)
}function a(e,d){return e.write('<div class="new-miniprofile-content js-new-miniprofile-content"><div class="triangle triangle-top"></div>').partial("tl/shared/profile/mini_profile_info",d,null).partial("tl/shared/profile/sorted_shared_connections",d,null).write('<div class="triangle triangle-bottom"></div></div>')
}return c
})();
(function(){dust.register("mini_profile_shell",dust.cache["tl/shared/profile/mini_profile_shell"])
})();(function(){dust.register("tl/shared/degree_icon",b);
function b(d,c){return d.helper("param",c,{},{"key":"fNameP","defaultVal":""}).helper("param",c,{},{"key":"lNameP","defaultVal":""}).helper("param",c,{},{"key":"title","defaultVal":""}).helper("param",c,{},{"key":"distanceP","defaultVal":"-1"}).partial(a,c,null)
}function a(d,c){return d.write("tl/shared/degree_icon_").reference(c.get("distanceP"),c,"h")
}return b
})();
(function(){dust.register("degree_icon",dust.cache["tl/shared/degree_icon"])
})();(function(){dust.register("tl/shared/degree_icon_base",e);
function e(g,f){return g.write('<abbr aria-hidden="true" title="').exists(f.get("title"),f,{"else":d,"block":b},null).write('" class="degree-icon ').block(f.getBlock("customStyle"),f,{},null).write('">').block(f.getBlock("iconTxt"),f,{"block":a},null).write("</abbr>")
}function d(g,f){return g.block(f.getBlock("distanceStr"),f,{"block":c},null)
}function c(g,f){return g.reference(f.get("degree_icon_base__text_plain__formatted_name"),f,"h")
}function b(g,f){return g.reference(f.get("title"),f,"h")
}function a(g,f){return g.reference(f.get("distanceP"),f,"h").reference(f.get("degree_icon_base__text_plain__degree_icon_symbol"),f,"h",["s"])
}return e
})();
(function(){dust.register("degree_icon_base",dust.cache["tl/shared/degree_icon_base"])
})();(function(){dust.register("tl/shared/degree_icon_-1",a);
function a(c,b){return c
}return a
})();
(function(){dust.register("degree_icon_-1",dust.cache["tl/shared/degree_icon_-1"])
})();(function(){dust.register("tl/shared/degree_icon_0",c);
var d={"distanceStr":b,"iconTxt":a};
function c(f,e){e=e.shiftBlocks(d);
return f.partial("tl/shared/degree_icon_base",e,null)
}function b(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_0__text_plain__you_distance_str_key"),e,"h")
}function a(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_0__text_plain__you_icon_txt_key"),e,"h")
}return c
})();
(function(){dust.register("degree_icon_0",dust.cache["tl/shared/degree_icon_0"])
})();(function(){dust.register("tl/shared/degree_icon_1",c);
var d={"distanceStr":b,"iconTxt":a};
function c(f,e){e=e.shiftBlocks(d);
return f.partial("tl/shared/degree_icon_base",e,null)
}function b(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_1__text_plain__NAME_is_your_connection"),e,"h",["s"])
}function a(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_1__text_plain__1st"),e,"h",["s"])
}return c
})();
(function(){dust.register("degree_icon_1",dust.cache["tl/shared/degree_icon_1"])
})();(function(){dust.register("tl/shared/degree_icon_2",c);
var d={"distanceStr":b,"iconTxt":a};
function c(f,e){e=e.shiftBlocks(d);
return f.partial("tl/shared/degree_icon_base",e,null)
}function b(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_2__text_plain__NAME_is_2nd_degree_contact_key"),e,"h",["s"])
}function a(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_2__text_plain__2nd"),e,"h",["s"])
}return c
})();
(function(){dust.register("degree_icon_2",dust.cache["tl/shared/degree_icon_2"])
})();(function(){dust.register("tl/shared/degree_icon_3",c);
var d={"distanceStr":b,"iconTxt":a};
function c(f,e){e=e.shiftBlocks(d);
return f.partial("tl/shared/degree_icon_base",e,null)
}function b(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_3__text_plain__NAME_is_3rd_degree_connection_key"),e,"h",["s"])
}function a(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_3__text_plain__3rd"),e,"h",["s"])
}return c
})();
(function(){dust.register("degree_icon_3",dust.cache["tl/shared/degree_icon_3"])
})();(function(){dust.register("tl/shared/degree_icon_100",c);
var d={"distanceStr":b,"iconTxt":a};
function c(f,e){e=e.shiftBlocks(d);
return f.partial("tl/shared/degree_icon_base",e,null)
}function b(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_100__text_plain__you_and_NAME_have_groups_in_common_key"),e,"h",["s"])
}function a(f,e){e=e.shiftBlocks(d);
return f.reference(e.get("degree_icon_100__text_plain__group_icon_txt_key"),e,"h")
}return c
})();
(function(){dust.register("degree_icon_100",dust.cache["tl/shared/degree_icon_100"])
})();(function(){dust.register("tl/shared/degree_icon_200",d);
var e={"distanceStr":c,"iconTxt":b,"customStyle":a};
function d(g,f){f=f.shiftBlocks(e);
return g.partial("tl/shared/degree_icon_base",f,null)
}function c(g,f){f=f.shiftBlocks(e);
return g.reference(f.get("degree_icon_200__text_plain__NAME_is_in_your_teams_network"),f,"h",["s"])
}function b(g,f){f=f.shiftBlocks(e);
return g.reference(f.get("degree_icon_200__text_plain__TeamLink"),f,"h")
}function a(g,f){f=f.shiftBlocks(e);
return g.write("teamlink")
}return d
})();
(function(){dust.register("degree_icon_200",dust.cache["tl/shared/degree_icon_200"])
})();(function(){dust.register("tl/apps/biz/partial/_biz_share_uscp_activity",c);
function c(e,d){return e.section(d.get("biz_share_uscp_activity"),d,{"block":b},null)
}function b(e,d){return e.section(d.get("elements"),d,{"block":a},{"actorId":d.getPath(false,["currentActor","id"]),"actorType":d.getPath(false,["currentActor","type"]),"hasCSPrivileges":d.getPath(false,["currentActor","hasCSPrivileges"]),"contextType":d.getPath(false,["activityContext","type"]),"contextId":d.getPath(false,["activityContext","id"]),"contextUrn":d.getPath(false,["activityContext","urn"])})
}function a(e,d){return e.partial("tl/shared/uscp/feed/_activity",d,{"activityActorId":d.getPath(false,["actor","urnMap","id"]),"activityIdRaw":d.getPath(false,["urnMap","id"]),"activityId":d.get("id"),"activityUrn":d.get("urn")})
}return c
})();
(function(){dust.register("_biz_share_uscp_activity",dust.cache["tl/apps/biz/partial/_biz_share_uscp_activity"])
})();