[IMP] Product tour: upload image

bzr revid: ddm@openerp.com-20131125160833-9pavzpff5akck451
This commit is contained in:
ddm 2013-11-25 17:08:33 +01:00
parent 4fe9f90495
commit 97fb6198dd
1 changed files with 33 additions and 0 deletions

View File

@ -71,6 +71,39 @@
content: "Edit the sale price of this product by clicking on the amount. The price is the sale price used in all sale order when selling this product.",
template: self.popover({ next: "OK" }),
},
{
stepId: 'update-image',
element: '#wrap img.img:first',
placement: 'top',
title: "Update image",
content: "Click here to set an image describing your product.",
triggers: function () {
function registerClick () {
$('button.image-edit-button').one('click', function () {
$('#wrap img.img:first').off('hover', registerClick);
self.moveToNextStep();
});
}
$('#wrap img.img:first').on('hover', registerClick);
},
},
{
stepId: 'upload-image',
element: 'button.filepicker',
placement: 'left',
title: "Upload image",
content: "Click on 'Upload an image from your computer' to pick an image describing your product.",
template: self.popover({ next: "OK" }),
},
{
stepId: 'save-image',
element: 'button.save',
placement: 'right',
reflex: true,
title: "Save the image",
content: "Click 'Save Changes' to add the image to the product decsription.",
},
{
stepId: 'add-block',
element: 'button[data-action=snippet]',