mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
c52a9e83ea
This avoids the creation of two views per row, which will make a big difference for large blogs.
9 lines
297 B
JavaScript
9 lines
297 B
JavaScript
import itemView from 'ghost/views/item-view';
|
|
|
|
var PostItemView = itemView.extend({
|
|
openEditor: function () {
|
|
this.get('controller').send('openEditor', this.get('context')); // send action to handle transition to editor route
|
|
}.on("doubleClick")
|
|
});
|
|
|
|
export default PostItemView;
|