summaryrefslogtreecommitdiff
path: root/addons/website/static/src/js/user_custom_javascript.js
diff options
context:
space:
mode:
Diffstat (limited to 'addons/website/static/src/js/user_custom_javascript.js')
-rw-r--r--addons/website/static/src/js/user_custom_javascript.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/addons/website/static/src/js/user_custom_javascript.js b/addons/website/static/src/js/user_custom_javascript.js
new file mode 100644
index 00000000..a68d298b
--- /dev/null
+++ b/addons/website/static/src/js/user_custom_javascript.js
@@ -0,0 +1,24 @@
+//
+// This file is meant to regroup your javascript code. You can either copy/past
+// any code that should be executed on each page loading or write your own
+// taking advantage of the Odoo framework to create new behaviors or modify
+// existing ones. For example, doing this will greet any visitor with a 'Hello,
+// world !' message in a popup:
+//
+/*
+odoo.define('website.user_custom_code', function (require) {
+'use strict';
+
+var Dialog = require('web.Dialog');
+var publicWidget = require('web.public.widget');
+
+publicWidget.registry.HelloWorldPopup = publicWidget.Widget.extend({
+ selector: '#wrapwrap',
+
+ start: function () {
+ Dialog.alert(this, "Hello, world!");
+ return this._super.apply(this, arguments);
+ },
+})
+});
+*/