* change the scrolling param to true.

This commit is contained in:
wangchunsheng
2012-01-04 06:18:16 +00:00
parent 2a526e5ccb
commit c63ac90de8
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
$(document).ready(function()
{
$("a.preview").colorbox({width:1000, height:600, iframe:true, transition:'elastic', speed:350, scrolling:false});
$("a.preview").colorbox({width:1000, height:600, iframe:true, transition:'elastic', speed:350, scrolling:true});
})

View File

@@ -3,11 +3,11 @@ function loadStoriesAndBugs(buildID,productID)
link = createLink('release', 'ajaxGetStoriesAndBugs', 'buildID=' + buildID + '&productID=' + productID);
$('#linkStoriesAndBugs').load(link, function()
{
$("a.preview").colorbox({width:1000, height:600, iframe:true, transition:'elastic', speed:350, scrolling:false});
$("a.preview").colorbox({width:1000, height:600, iframe:true, transition:'elastic', speed:350, scrolling:true});
})
}
$(document).ready(function()
{
$("a.preview").colorbox({width:1000, height:600, iframe:true, transition:'elastic', speed:350, scrolling:false});
$("a.preview").colorbox({width:1000, height:600, iframe:true, transition:'elastic', speed:350, scrolling:true});
})