Explorar el Código

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

Herbert Vojčík hace 8 años
padre
commit
df6c4e8733
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
                 },