mirror of
https://github.com/documize/community.git
synced 2025-08-09 23:45:28 +02:00
new user on boarding: start document dialog in wrong position when no spaces or documents
This commit is contained in:
parent
0ce9ab406e
commit
733fcff58b
2 changed files with 6 additions and 3 deletions
|
@ -1,11 +1,11 @@
|
||||||
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
||||||
//
|
//
|
||||||
// This software (Documize Community Edition) is licensed under
|
// This software (Documize Community Edition) is licensed under
|
||||||
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
||||||
//
|
//
|
||||||
// You can operate outside the AGPL restrictions by purchasing
|
// You can operate outside the AGPL restrictions by purchasing
|
||||||
// Documize Enterprise Edition and obtaining a commercial license
|
// Documize Enterprise Edition and obtaining a commercial license
|
||||||
// by contacting <sales@documize.com>.
|
// by contacting <sales@documize.com>.
|
||||||
//
|
//
|
||||||
// https://documize.com
|
// https://documize.com
|
||||||
|
|
||||||
|
@ -30,6 +30,8 @@ export default Ember.Component.extend({
|
||||||
onAction2: null,
|
onAction2: null,
|
||||||
offset: "5px 0",
|
offset: "5px 0",
|
||||||
targetOffset: "10px 0",
|
targetOffset: "10px 0",
|
||||||
|
constrainToWindow: true,
|
||||||
|
constrainToScrollParent: true,
|
||||||
|
|
||||||
hasSecondButton: Ember.computed('button2', 'color2', function() {
|
hasSecondButton: Ember.computed('button2', 'color2', function() {
|
||||||
return is.not.empty(this.get('button2')) && is.not.empty(this.get('color2'));
|
return is.not.empty(this.get('button2')) && is.not.empty(this.get('color2'));
|
||||||
|
@ -106,4 +108,4 @@ export default Ember.Component.extend({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
.page-container {
|
.page-container {
|
||||||
padding-top: 60px;
|
padding-top: 60px;
|
||||||
|
min-height: 500px; //ensure dropdowns render in viewport
|
||||||
}
|
}
|
||||||
|
|
||||||
.copyright {
|
.copyright {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue