Skip to content

Instantly share code, notes, and snippets.

@mtmzorro
Last active August 29, 2015 14:01
Show Gist options
  • Save mtmzorro/f71c784f223149971f72 to your computer and use it in GitHub Desktop.
Save mtmzorro/f71c784f223149971f72 to your computer and use it in GitHub Desktop.
var searchUnit = {};
/**
* [resizeOnebox 接受oneBox iframe内内容高度 并修改]
* @param {[String]} height [iframe 内高度]
*/
searchUnit.resizeOnebox = function(height){
if(typeof height !== 'undefined'){
height = height < 700 ? 700 : height;
height += 20;
$('#J_oneBoxFrame').css('height', height);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment