// Shared initializer for fullscreen feed pages. // Keeps template inline JS mostly data-only (LoggedIn, Timestamp). (function($){ function defaultPop(url) { var newwindow = window.open( url, 'name', 'height=50,width=400,left=20,top=20,location=0,status=0,scrollbar=0,resizable=0' ); if (window.focus && newwindow) { newwindow.focus(); } return newwindow; } if (typeof window.pop !== 'function') { window.pop = defaultPop; } if (typeof window.startChatUpdater === 'function') { $(window.startChatUpdater); } })(jQuery);