Skip to content

Commit

Permalink
Use define instead of require for our dojo modules definition
Browse files Browse the repository at this point in the history
  • Loading branch information
ylavoie committed Mar 30, 2020
1 parent 98d11d5 commit 6b27216
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion UI/js-src/lsmb/Invoice.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require(
define(
["dojo/_base/declare",
"dijit/registry",
"dojo/on",
Expand Down
2 changes: 1 addition & 1 deletion UI/js-src/lsmb/InvoiceLine.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require(["dojo/_base/declare",
define(["dojo/_base/declare",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
"dijit/_WidgetsInTemplateMixin",
Expand Down
2 changes: 1 addition & 1 deletion UI/js-src/lsmb/InvoiceLines.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require(
define(
["dojo/_base/declare",
"dijit/registry",
"dijit/_WidgetBase",
Expand Down
2 changes: 1 addition & 1 deletion UI/js-src/lsmb/TemplateManager.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require(
define(
["dojo/_base/declare",
"dojo/on",
"dojo/_base/lang",
Expand Down

0 comments on commit 6b27216

Please sign in to comment.