[IMP] Tour: publish and save blog post

bzr revid: ddm@openerp.com-20131122170542-pf9rchtu3dr175xd
This commit is contained in:
ddm 2013-11-22 18:05:42 +01:00
parent 53793703de
commit de554f8d78
1 changed files with 18 additions and 3 deletions

View File

@ -140,19 +140,34 @@
$('#wrap [data-snippet-id=text-block] .text-center[data-snippet-id=colmd]').click(function () {
setTimeout(function () {
self.movetoStep('remove-text-block-title');
}, 0);
}, 50);
});
},
},
{
stepId: 'remove-text-block-title',
element: 'span.icon-remove',
element: '.oe_snippet_remove:last',
placement: 'top',
reflex: true,
title: "Delete the title",
content: "Click on the cross to delete the title.",
},
{
stepId: 'publish-post',
element: 'button.js_publish_btn',
placement: 'right',
reflex: true,
title: "Publish your blog post",
content: "Click to publish your blog post.",
},
{
stepId: 'save-changes',
element: 'button[data-action=save]',
placement: 'right',
reflex: true,
title: "Save your modifications",
content: "Once you click on save, your post is updated.",
},
];
return this._super();
},