mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
issue 2853, fixed a bug. open PC list on download new layout and skin when mobile tab is opened.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12616 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a837338a17
commit
4598071847
1 changed files with 8 additions and 4 deletions
|
|
@ -2316,8 +2316,9 @@ jQuery(function($){
|
||||||
|
|
||||||
//index.php?act=getAutoinstallAdminMenuPackageList
|
//index.php?act=getAutoinstallAdminMenuPackageList
|
||||||
$('#layout').nextAll().hide();
|
$('#layout').nextAll().hide();
|
||||||
|
|
||||||
drawDownloadableList('downloadLayout');
|
var sMode = $._xeAdminVar.htPrevSetting.bMobilePreviewTabOpen?"M":"P";
|
||||||
|
drawDownloadableList('downloadLayout', { 'type': sMode});
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#downloadSkin').bind("show", function(ev){
|
$('#downloadSkin').bind("show", function(ev){
|
||||||
|
|
@ -2328,16 +2329,19 @@ jQuery(function($){
|
||||||
|
|
||||||
//index.php?act=getAutoinstallAdminMenuPackageList
|
//index.php?act=getAutoinstallAdminMenuPackageList
|
||||||
$('#skin').nextAll().hide();
|
$('#skin').nextAll().hide();
|
||||||
|
var sMode = $._xeAdminVar.htPrevSetting.bMobilePreviewTabOpen?"M":"P";
|
||||||
|
|
||||||
<!--@if($act == 'dispMenuAdminSiteMap')-->
|
<!--@if($act == 'dispMenuAdminSiteMap')-->
|
||||||
drawDownloadableList('downloadSkin', {
|
drawDownloadableList('downloadSkin', {
|
||||||
parent_program : htNodeInfo[$._xeAdminVar.sSelectedMenuSrl].sModuleType
|
parent_program : htNodeInfo[$._xeAdminVar.sSelectedMenuSrl].sModuleType,
|
||||||
|
type: sMode
|
||||||
});
|
});
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
|
|
||||||
<!--@if($act == 'dispMenuAdminSiteDesign')-->
|
<!--@if($act == 'dispMenuAdminSiteDesign')-->
|
||||||
drawDownloadableList('downloadSkin', {
|
drawDownloadableList('downloadSkin', {
|
||||||
parent_program : $._xeAdminVar.htSelectedMenuDesign.sModuleName
|
parent_program : $._xeAdminVar.htSelectedMenuDesign.sModuleName,
|
||||||
|
type: sMode
|
||||||
});
|
});
|
||||||
<!--@end-->
|
<!--@end-->
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue