* fix bug #089 and #090

This commit is contained in:
fujia
2010-05-17 06:22:49 +00:00
parent 77657f687e
commit 98f77a7b16
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@
function copyStoryTitle()
{
var storyTitle = $('#story option:selected').text();
storyTitle = storyTitle.substr(storyTitle.lastIndexOf('/') + 1);
storyTitle = storyTitle.substr(storyTitle.lastIndexOf(':')+ 1);
$('#name').attr('value', storyTitle);
}