Skip to content

Commit

Permalink
Merge pull request #112 from PiotrChr/develop
Browse files Browse the repository at this point in the history
Add missing comma before modalBackdropString
thednp authored Feb 9, 2017
2 parents 29fed4a + 9272083 commit 80908ca
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist-v4/bootstrap-native.js
Original file line number Diff line number Diff line change
@@ -833,7 +833,7 @@
component = 'modal',
staticString = 'static',
paddingLeft = 'paddingLeft',
paddingRight = 'paddingRight'
paddingRight = 'paddingRight',
modalBackdropString = 'modal-backdrop';

if ( hasClass(element,'modal') ) { element = null; } // modal is now independent of it's triggering element
2 changes: 1 addition & 1 deletion dist-v4/bootstrap-native.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bootstrap-native.js
Original file line number Diff line number Diff line change
@@ -992,7 +992,7 @@
component = 'modal',
staticString = 'static',
paddingLeft = 'paddingLeft',
paddingRight = 'paddingRight'
paddingRight = 'paddingRight',
modalBackdropString = 'modal-backdrop';

if ( hasClass(element,'modal') ) { element = null; } // modal is now independent of it's triggering element
2 changes: 1 addition & 1 deletion dist/bootstrap-native.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/V3/modal-native.js
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ var Modal = function(element, options) { // element can be the modal/triggering
component = 'modal',
staticString = 'static',
paddingLeft = 'paddingLeft',
paddingRight = 'paddingRight'
paddingRight = 'paddingRight',
modalBackdropString = 'modal-backdrop';

if ( hasClass(element,'modal') ) { element = null; } // modal is now independent of it's triggering element
2 changes: 1 addition & 1 deletion lib/V4/modal-native.js
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ var Modal = function(element, options) { // element can be the modal/triggering
component = 'modal',
staticString = 'static',
paddingLeft = 'paddingLeft',
paddingRight = 'paddingRight'
paddingRight = 'paddingRight',
modalBackdropString = 'modal-backdrop';

if ( hasClass(element,'modal') ) { element = null; } // modal is now independent of it's triggering element

0 comments on commit 80908ca

Please sign in to comment.