Adding tether script as dependency for BS4 tooltip component
This commit is contained in:
parent
29ae21fde2
commit
862fd60b64
|
@ -28,7 +28,8 @@
|
|||
"fontawesome": "~4.5.0",
|
||||
"_s": "https://github.com/Automattic/_s.git",
|
||||
"OwlCarousel2": "https://github.com/smashingboxes/OwlCarousel2.git",
|
||||
"bootstrap": "v4.0.0-alpha.2"
|
||||
"bootstrap": "v4.0.0-alpha.2",
|
||||
"tether": "~1.3.1"
|
||||
},
|
||||
"_source": "https://github.com/holger1411/understrap.git",
|
||||
"_target": "~0.4.2",
|
||||
|
|
13
gulpfile.js
13
gulpfile.js
|
@ -86,20 +86,11 @@ gulp.task('watch-bs', ['browser-sync', 'watch', 'cssnano'], function () { });
|
|||
gulp.task('scripts', function() {
|
||||
gulp.src([
|
||||
basePaths.dev + 'js/owl.carousel.min.js', // Must be loaded before BS4
|
||||
basePaths.dev + 'js/tether.js', // Must be loaded before BS4
|
||||
|
||||
// Start - All BS4 stuff
|
||||
basePaths.dev + 'js/bootstrap4/bootstrap.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/util.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/alert.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/button.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/carousel.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/collapse.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/dropdown.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/modal.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/scrollspy.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/tab.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/tooltip.js',
|
||||
//basePaths.dev + 'js/bootstrap4/umd/popover.js',
|
||||
|
||||
// End - All BS4 stuff
|
||||
|
||||
basePaths.dev + 'js/skip-link-focus-fix.js'
|
||||
|
|
Reference in New Issue