Skip to content

Commit

Permalink
Fixed config issue; thanks andrew.archer for the fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
wnielson committed Oct 9, 2012
1 parent 866cdb1 commit efd8f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ux/slidenavigation/View.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ Ext.define('Ext.ux.slidenavigation.View', {
if (Ext.isFunction(item.raw.handler)) {
me._cache[index] = item.raw.handler;
} else {
me._cache[index] = container.add(Ext.merge(me.config.defaults, item.raw));
me._cache[index] = container.add(Ext.merge({}, me.config.defaults, item.raw));

// Add a button for controlling the slide, if desired
if ((item.raw.slideButton || false)) {
Expand Down

0 comments on commit efd8f01

Please sign in to comment.