I'm reading about themes in odoo 9, but in the part about javascript options i have a problem, I copied and paste this code
(function() { 'use strict'; var website = openerp.website; website.openerp_website = {}; website.snippet.options.snippet_testimonial_options = website.snippet.Option.extend({ on_focus: function() { alert("On focus!"); } }) })();
then I follwed the instructions but I didn't get the alert whit the message "on focus!" so Ichecked the web console and I found this message
Uncaught ReferenceError: openerp is not defined
at website.assets_frontend.js:846
at website.assets_frontend.js:846
I was looking for but I didn'y find anything.
if someone have the answer, please tell me.
Thank you so much!