Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7efddde

Browse files
committed
Updated Composer dependencies. Added migrations directory.
1 parent 08dc1ab commit 7efddde

90 files changed

Lines changed: 4359 additions & 3398 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

components/bootstrap/bootstrap-built.js

Lines changed: 120 additions & 89 deletions
Large diffs are not rendered by default.

components/bootstrap/css/bootstrap-theme.css

Lines changed: 100 additions & 100 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/bootstrap/css/bootstrap-theme.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/bootstrap/css/bootstrap-theme.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/bootstrap/css/bootstrap-theme.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/bootstrap/css/bootstrap.css

Lines changed: 531 additions & 454 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/bootstrap/css/bootstrap.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/bootstrap/css/bootstrap.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/bootstrap/css/bootstrap.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/bootstrap/js/affix.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/* ========================================================================
2-
* Bootstrap: affix.js v3.3.7
3-
* http://getbootstrap.com/javascript/#affix
2+
* Bootstrap: affix.js v3.4.0
3+
* https://getbootstrap.com/docs/3.4/javascript/#affix
44
* ========================================================================
5-
* Copyright 2011-2016 Twitter, Inc.
5+
* Copyright 2011-2018 Twitter, Inc.
66
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
77
* ======================================================================== */
88

@@ -16,7 +16,9 @@
1616
var Affix = function (element, options) {
1717
this.options = $.extend({}, Affix.DEFAULTS, options)
1818

19-
this.$target = $(this.options.target)
19+
var target = this.options.target === Affix.DEFAULTS.target ? $(this.options.target) : $(document).find(this.options.target)
20+
21+
this.$target = target
2022
.on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
2123
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
2224

@@ -28,7 +30,7 @@
2830
this.checkPosition()
2931
}
3032

31-
Affix.VERSION = '3.3.7'
33+
Affix.VERSION = '3.4.0'
3234

3335
Affix.RESET = 'affix affix-top affix-bottom'
3436

0 commit comments

Comments
 (0)