Skip to content

Commit

Permalink
fix field sizes when horizontal orientation applied
Browse files Browse the repository at this point in the history
  • Loading branch information
lindski committed Sep 10, 2015
1 parent bff479f commit a641896
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ test/.project
*.tmp
*.lock
.idea/
test/package.xml
Binary file added dist/1.2/BootstrapMultiSelectForMendix.mpk
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
========================
@file : BootstrapMultiSelect.js
@version : 1.0
@version : 1.2
@author : Iain Lindsay
@date : Wed, 02 Sep 2015 08:08:10 GMT
@date : Thur, 10 Sep 2015 08:08:10 GMT
@copyright : AuraQ Limited 2015
@license : Apache v2
Expand Down Expand Up @@ -84,8 +84,8 @@ define([
comboLabelWidth = this.labelWidth > 11 ? 11 : this.labelWidth;

var comboControlWidth = 12 - comboLabelWidth,
comboLabelClass = 'col-md-' + comboLabelWidth,
comboControlClass = 'col-md-' + comboControlWidth;
comboLabelClass = 'col-sm-' + comboLabelWidth,
comboControlClass = 'col-sm-' + comboControlWidth;

domClass.add(this.multiSelectLabel, comboLabelClass);
domClass.add(this.multiSelectComboContainer, comboControlClass);
Expand Down
Binary file modified test/widgets/BootstrapMultiSelectForMendix.mpk
Binary file not shown.

0 comments on commit a641896

Please sign in to comment.