var MasterPage = function (options) { if (typeof (Zenbox) !== "undefined") { Zenbox.init({ dropboxID: "20198600", url: "https://collegiatelink.zendesk.com", tabColor: "black", tabPosition: "Left", hide_tab: true }); } $('#helpLink').click(function () { var helpurl = $('#helpLink').data("helpurl"); if (helpurl != null && helpurl != "") { window.open(helpurl); return false; } else { if (typeof (Zenbox) !== "undefined") { Zenbox.show(); return false; } } }); if ((options.showAdditionalFields == "True") && (options.additionalFieldUrl != null)) { var dialogDiv = $('
'); var dialog = core.modal.init(dialogDiv, { content: options.additionalFieldUrl, deactivate: function () { $('#createAccount-additional h2').attr('tabindex', '0').focus(); dialog.destroy(); }, refresh: function () { dialog.center(); dialog.open(); } }); } if ((options.translateEnabled == "True") && (options.translateEnabled != null)) { $('html').addClass('translate-enabled'); //start absolute var menu = $('#userNav-container'); $(window).scroll(function () { if ($('.goog-te-banner-frame:visible').length) { $('html').addClass('translate-active'); } else { $('html').removeClass('translate-active translate-enabled'); } }); } }