设置

高级设置

选哪个作为你的起始桌面?

个性域名

输入你的个性域名:{$_SC['cookiedomain']}

个性域名

你的个性域名是:http://{$_SC['domain_name']}{$_SC['cookiedomain']}

帐号设置

帐户设置

重置:

$(".main_menu_placeholder a").click(function() { settingsLastMainMenu = $(this).attr("id"); windowMainMenuClick($(this)); }); $(".sub_menu_placeholder a").click(function() { settingsLastSubMenu = $(this).attr("id"); windowSubMenuClick($(this)); desktopTabs("hide"); }); $("#windowSettingsMainMenuDesktop").click(function() { windowContentShow('desktop', settingsLoadTabDesktop); }); // onclicks for the specific submenu-items -->> // $("#windowSettingsSubMenuMain").click(function() { windowContentShow('main', settingsLoadTabMain); }); $("#windowSettingsSubMenuAdvanced").click(function() { windowContentShow('advanced', settingsLoadTabAdvanced); }); $("#windowSettingsSubMenuAccount").click(function() { windowContentShow('account', settingsLoadTabAccount); }); $("#windowSettingsSubMenuReset").click(function() { windowContentShow('reset'); }); $("#languageResetHard").click(function() { showCommonDialog( { identifier: 'resetFullYesNo', viewtype: 3, callback: function() { resetSymbaloo('hard'); } } ); }); $(".window_tabs_tab").hover(function() { $(this).addClass("window_tabs_tab_hover"); }, function() { $(this).removeClass("window_tabs_tab_hover"); }); $("#updatePrivacyButton").click(function() { $('#privacy_form').submit(); }); $("#privacy_form").submit(function() { $(this).ajaxSubmit( { url: '/ajax/update_profile.php', type: 'post', beforeSubmit: function(formData, jqForm, options) { if ($('input[@name=domain]').fieldValue() == '') { showAlert({ content: '个性域名不能为空,请输入英文字母或者数字' }); return false; } }, success: function(responseText) { if (responseText == 'success') { showAlert({ content: "个性域名设置成功", icon:'ok', time_out:3 }); setTimeout(hideWindow,3000); } else { showAlert({ content: responseText }); } } }); return false; }); // init this window -->> // settingsInit(0);