Updated Items.js as per ray's specifications
This commit is contained in:
parent
a49562e341
commit
eeb7f72876
|
@ -111,30 +111,30 @@ function customOpenSlide() {
|
||||||
.closest('.navbar-inner')
|
.closest('.navbar-inner')
|
||||||
.addClass('active');
|
.addClass('active');
|
||||||
pageslide.find('.content').css('padding', 0);
|
pageslide.find('.content').css('padding', 0);
|
||||||
iFrameContent()
|
// iFrameContent()
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function iFrameContent() {
|
// function iFrameContent() {
|
||||||
function iFrameFunction(iContents, pc) {
|
// function iFrameFunction(iContents, pc) {
|
||||||
pc.each(function(index, el) {
|
// pc.each(function(index, el) {
|
||||||
if($(this).siblings('*').length == 0) {
|
// if($(this).siblings('*').length == 0) {
|
||||||
var _parentH = $(this).parent('*').outerHeight();
|
// var _parentH = $(this).parent('*').outerHeight();
|
||||||
$(this).css('height', _parentH);
|
// $(this).css('min-height', _parentH);
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
iContents.find('#orbit-bar').hide();
|
// iContents.find('#orbit-bar').hide();
|
||||||
iContents.find('.main_wrap').css('margin-top', 0);
|
// iContents.find('.main_wrap').css('margin-top', 0);
|
||||||
iContents.find('a').not('.edit_link a').on('click', function(event) {
|
// iContents.find('a').not('.edit_link a').on('click', function(event) {
|
||||||
event.preventDefault();
|
// event.preventDefault();
|
||||||
}).css('cursor', 'default');
|
// }).css('cursor', 'default');
|
||||||
}
|
// }
|
||||||
$('#pageslide_iframe').load(function() {
|
// $('#pageslide_iframe').load(function() {
|
||||||
var $iContents = $(this).contents(),
|
// var $iContents = $(this).contents(),
|
||||||
$pc = $iContents.find('.page_content');
|
// $pc = $iContents.find('.page_content');
|
||||||
iFrameFunction($iContents, $pc);
|
// iFrameFunction($iContents, $pc);
|
||||||
});
|
// });
|
||||||
}
|
// }
|
||||||
|
|
||||||
function pageSetting(id, edit, ps) {
|
function pageSetting(id, edit, ps) {
|
||||||
$pageModule = $('#pageslide #page_module_app_id');
|
$pageModule = $('#pageslide #page_module_app_id');
|
||||||
|
|
Reference in New Issue