Files
EasySoft-ZenTaoPMS/module/story/js/close.js
wangchunsheng e8b1377c1e * rewrite the story module's ui.
* splite the css and js of story module.
2011-03-02 09:53:03 +00:00

19 lines
375 B
JavaScript

function setStory(reason)
{
if(reason == 'duplicate')
{
$('#duplicateStoryBox').show();
$('#childStoriesBox').hide();
}
else if(reason == 'subdivided')
{
$('#duplicateStoryBox').hide();
$('#childStoriesBox').show();
}
else
{
$('#duplicateStoryBox').hide();
$('#childStoriesBox').hide();
}
}