Use automove parameter for window (don't use default resizing)
This commit is contained in:
parent
f973fb5550
commit
a1264c81b2
|
@ -54,7 +54,8 @@ define([
|
||||||
var _options = {};
|
var _options = {};
|
||||||
_.extend(_options, {
|
_.extend(_options, {
|
||||||
header: true,
|
header: true,
|
||||||
enableKeyEvents: false
|
enableKeyEvents: false,
|
||||||
|
automove: false
|
||||||
}, options);
|
}, options);
|
||||||
|
|
||||||
var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34;
|
var header_footer = (_options.buttons && _.size(_options.buttons)>0) ? 85 : 34;
|
||||||
|
|
|
@ -53,7 +53,8 @@ define([
|
||||||
cls: 'search-bar',
|
cls: 'search-bar',
|
||||||
alias: 'SearchBar',
|
alias: 'SearchBar',
|
||||||
showOpenPanel: true,
|
showOpenPanel: true,
|
||||||
toolclose: 'hide'
|
toolclose: 'hide',
|
||||||
|
automove: false
|
||||||
},
|
},
|
||||||
|
|
||||||
initialize : function(options) {
|
initialize : function(options) {
|
||||||
|
|
Loading…
Reference in a new issue