/* Copy story title as task title. */ function copyStoryTitle() { var storyTitle = $('#story option:selected').text(); startPosition = storyTitle.indexOf(':') + 1; endPosition = storyTitle.lastIndexOf('('); storyTitle = storyTitle.substr(startPosition, endPosition - startPosition); $('#name').attr('value', storyTitle); } /* Set the assignedTos field. */ function setOwners(result) { if(result == 'affair') { $('#assignedTo').attr('multiple', 'multiple'); $('#assignedTo').chosen('destroy'); $('#assignedTo').chosen(defaultChosenOptions); $('#selectAllUser').removeClass('hidden'); } else if($('#assignedTo').attr('multiple') == 'multiple') { $('#assignedTo').removeAttr('multiple'); $('#assignedTo').chosen('destroy'); $('#assignedTo').chosen(defaultChosenOptions); $('#selectAllUser').addClass('hidden'); } } /* Set preview and module of story. */ function setStoryRelated() { setPreview(); if($('#module').val() == 0) setStoryModule(); } /* Set the story module. */ function setStoryModule() { var storyID = $('#story').val(); if(storyID) { var link = createLink('story', 'ajaxGetModule', 'storyID=' + storyID); $.get(link, function(moduleID) { $('#module').val(moduleID); $("#module").trigger("chosen:updated"); }); } } /* Set the story priview link. */ function setPreview() { if(!$('#story').val()) { $('#preview').addClass('hidden'); $('#copyButton').addClass('hidden'); } else { storyLink = createLink('story', 'view', "storyID=" + $('#story').val()); var concat = config.requestType == 'PATH_INFO' ? '?' : '&'; storyLink = storyLink + concat + 'onlybody=yes'; $('#preview').removeClass('hidden'); $('#preview a').attr('href', storyLink); $('#copyButton').removeClass('hidden'); } setAfter(); } /** * Set after locate. * * @access public * @return void */ function setAfter() { if($("#story").length == 0 || $("#story").select().val() == '') { if($('input[value="continueAdding"]').attr('checked') == 'checked') { $('input[value="toTaskList"]').attr('checked', 'checked'); } $('input[value="continueAdding"]').attr('disabled', 'disabled'); } else { $('input[value="continueAdding"]').attr('checked', 'checked'); $('input[value="continueAdding"]').attr('disabled', false); } } /** * load stories of module. * * @access public * @return void */ function loadModuleRelated() { moduleID = $('#module').val(); projectID = $('#project').val(); setStories(moduleID, projectID); } /* Get select of stories.*/ function setStories(moduleID, projectID) { link = createLink('story', 'ajaxGetProjectStories', 'projectID=' + projectID + '&productID=0&moduleID=' + moduleID); $.get(link, function(stories) { var storyID = $('#story').val(); if(!stories) stories = ''; $('#story').replaceWith(stories); $('#story').val(storyID); setPreview(); $('#story_chosen').remove(); $("#story").chosen(defaultChosenOptions); }); } $(document).ready(function() { setPreview(); $("#story, #mailto").chosen(defaultChosenOptions); $('#selectAllUser').on('click', function() { var $assignedTo = $('#assignedTo'); if($assignedTo.attr('multiple')) { $assignedTo.children('option').attr('selected', 'selected'); $assignedTo.trigger('chosen:updated'); } }); });