Files
EasySoft-ZenTaoPMS/module/testcase/js/create.js
2011-12-07 02:48:46 +00:00

19 lines
470 B
JavaScript

/* Set the story priview link. */
function setPreview()
{
if(!$('#story').val())
{
$('#preview').addClass('hidden');
}
else
{
storyLink = createLink('story', 'view', "storyID=" + $('#story').val());
$('#preview').removeClass('hidden');
$('#preview').attr('href', storyLink);
}
}
$(function()
{
$("#preview").colorbox({width:1000, height:600, iframe:true, transition:'elastic', speed:350, scrolling:true});
})