From 86a6619dc8cd473342b8fbbffb48363d154df416 Mon Sep 17 00:00:00 2001 From: Jeremy Kersten Date: Mon, 17 Nov 2014 16:04:57 +0100 Subject: [PATCH] [FIX] website_forum: add fake tour for people waiting the tour. To remove in master. Without it, localstorage loop to search this unexisting tour after the install... --- addons/website_forum/data/forum_data.xml | 1 + .../static/src/js/website.tour.forum.js | 28 ++++---------------- 2 files changed, 6 insertions(+), 23 deletions(-) diff --git a/addons/website_forum/data/forum_data.xml b/addons/website_forum/data/forum_data.xml index 379e746..8099bc5 100644 --- a/addons/website_forum/data/forum_data.xml +++ b/addons/website_forum/data/forum_data.xml @@ -19,6 +19,7 @@ Forum self + diff --git a/addons/website_forum/static/src/js/website.tour.forum.js b/addons/website_forum/static/src/js/website.tour.forum.js index b4ca841..009b9a5 100644 --- a/addons/website_forum/static/src/js/website.tour.forum.js +++ b/addons/website_forum/static/src/js/website.tour.forum.js @@ -4,28 +4,10 @@ var website = openerp.website; var _t = openerp._t; - // website.EditorBar.include({ - // start: function () { - // this.registerTour(new website.Tour.Forum(this)); - // return this._super(); - // }, - // }); - - // website.Tour.Forum = website.Tour.extend({ - // id: 'question', - // name: "Create a question", - // testPath: '/forum(/[0-9]+/register)?', - // init: function (editor) { - // var self = this; - // self.steps = [ - // { - // title: _t("Create a question"), - // content: _t("Let's go through the first steps to create a new question."), - // popover: { next: _("Start Tutorial"), end: _("Skip It") }, - // }, - // ]; - // return this._super(); - // } - // }); + openerp.Tour.register({ + id: 'forum', + name: '', + steps : [{}], + }); }()); -- 1.7.10.4