Classifiers should respect new story authors escaping.

This commit is contained in:
Samuel Clay 2016-02-26 12:02:30 -08:00
parent 3499950353
commit 1e6040ec93

View file

@ -495,10 +495,10 @@ var classifier_prototype = {
)
])
])),
(story.get('story_authors') && $.make('div', { className: 'NB-modal-field NB-fieldset' }, [
(story.story_authors() && $.make('div', { className: 'NB-modal-field NB-fieldset' }, [
$.make('h5', 'Story Author'),
$.make('div', { className: 'NB-fieldset-fields NB-classifiers' },
this.make_authors([story.get('story_authors')])
this.make_authors([story.story_authors()])
)
])),
(story.get('story_tags').length && $.make('div', { className: 'NB-modal-field NB-fieldset' }, [