Files
EasySoft-ZenTaoPMS/module/testcase/js/create.js
T

15 lines
335 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);
}
}