Files
EasySoft-ZenTaoPMS/module/testcase/js/create.js
2013-01-20 09:59:31 +00:00

20 lines
516 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()
{
$("#story").chosen({no_results_text: noResultsMatch});
$("#preview").colorbox({width:1000, height:550, iframe:true, transition:'none', scrolling:true});
})