21 lines
553 B
JavaScript
21 lines
553 B
JavaScript
/**
|
|
* Get story list.
|
|
*
|
|
* @param string $module
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
function getList()
|
|
{
|
|
productID = $('#product').get(0).value;
|
|
storyID = $('#story').get(0).value;
|
|
link = createLink('search', 'select', 'productID=' + productID + '&projectID=0&module=story&moduleID=' + storyID);
|
|
$('#storyListIdBox a').attr("href", link);
|
|
}
|
|
|
|
$(document).ready(function()
|
|
{
|
|
$("#story").chosen({no_results_text: noResultsMatch});
|
|
$("#searchStories").colorbox({width:680, height:400, iframe:true, transition:'none'});
|
|
});
|