Browse Source

Fix ea604d5: traitBuilder.updateExisting missing arg 'pkg'.

Herbert Vojčík 7 years ago
parent
commit
df6c4e8733
1 changed files with 1 additions and 1 deletions
  1. 1 1
      support/boot.js

+ 1 - 1
support/boot.js

@@ -439,7 +439,7 @@ define(['require', './brikz', './compatibility'], function (require, Brikz) {
                     setupBehavior(that, pkg);
                     return that;
                 },
-                updateExisting: function (trait) {
+                updateExisting: function (trait, pkg) {
                     if (pkg) trait.pkg = pkg;
                     return true;
                 },