View the Program & Build Your Schedule
View the full conference program and get details about the presentations and networking opportunities happening each day of the conference. The app makes it easy to build your own schedule based around the sessions you don’t want to miss.
Connect with Other Delegates
Use the app to search and sort through the full list of registered delegates by name or company and send messages or schedule meetings quickly and easily.
View Detailed Speaker Information
Easily search for your favorite speakers and click on their profile to access their bio and a summary of their presentations. Find out their timeslots and room locations and seamlessly add them to your conference calendar to create a custom schedule.
Customize Your Profile
Set your profile to public or private and add a bio, contact information, website and more. Connect it with social media accounts such as LinkedIn, Twitter, and Facebook to easily share, network and follow during the conference.
Download now!
var videos = document.getElementsByTagName("video"); fraction = 0.8; function checkScroll() {
for(var i = 0; i < videos.length; i++) { var video = videos[i]; var x = video.offsetLeft, y = video.offsetTop, w = video.offsetWidth, h = video.offsetHeight, r = x + w, //right b = y + h, //bottom visibleX, visibleY, visible; visibleX = Math.max(0, Math.min(w, window.pageXOffset + window.innerWidth - x, r - window.pageXOffset)); visibleY = Math.max(0, Math.min(h, window.pageYOffset + window.innerHeight - y, b - window.pageYOffset)); visible = visibleX * visibleY / (w * h); if (visible > fraction) { // video.play(); } else { //video.pause(); }
}
}
setTimeout(function(){ window.addEventListener('scroll', checkScroll, false); window.addEventListener('resize', checkScroll, false); }, 300);