File tree Expand file tree Collapse file tree 12 files changed +10
-28
lines changed
media_source/vendor/bootstrap/js Expand file tree Collapse file tree 12 files changed +10
-28
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ const build = async () => {
5959 'node_modules/bootstrap/js/src/dom/manipulator.js' ,
6060 'node_modules/bootstrap/js/src/dom/selector-engine.js' ,
6161 'node_modules/bootstrap/js/src/util/index.js' ,
62- 'build/media_source/vendor/bootstrap/js/nojquerymode.es6.js' ,
6362 ] ,
6463 } ,
6564 } ) ;
Original file line number Diff line number Diff line change 1- import nojQueryMode from './nojquerymode.es6' ;
21import Alert from '../../../../../node_modules/bootstrap/js/src/alert' ;
32
43window . bootstrap = window . bootstrap || { } ;
54window . bootstrap . Alert = Alert ;
65
7- if ( nojQueryMode && Joomla && Joomla . getOptions ) {
6+ if ( Joomla && Joomla . getOptions ) {
87 // Get the elements/configurations from the PHP
98 const alerts = Joomla . getOptions ( 'bootstrap.alert' ) ;
109 // Initialise the elements
Original file line number Diff line number Diff line change 1- import nojQueryMode from './nojquerymode.es6' ;
21import Button from '../../../../../node_modules/bootstrap/js/src/button' ;
32
43window . bootstrap = window . bootstrap || { } ;
54window . bootstrap . Button = Button ;
65
7- if ( nojQueryMode && Joomla && Joomla . getOptions ) {
6+ if ( Joomla && Joomla . getOptions ) {
87 // Get the elements/configurations from the PHP
98 const buttons = Joomla . getOptions ( 'bootstrap.button' ) ;
109 // Initialise the elements
Original file line number Diff line number Diff line change 1- import nojQueryMode from './nojquerymode.es6' ;
21import Carousel from '../../../../../node_modules/bootstrap/js/src/carousel' ;
32
43window . bootstrap = window . bootstrap || { } ;
54window . bootstrap . Carousel = Carousel ;
65
7- if ( nojQueryMode && Joomla && Joomla . getOptions ) {
6+ if ( Joomla && Joomla . getOptions ) {
87 // Get the elements/configurations from the PHP
98 const carousels = Joomla . getOptions ( 'bootstrap.carousel' ) ;
109 // Initialise the elements
Original file line number Diff line number Diff line change 1- import nojQueryMode from './nojquerymode.es6' ;
21import Collapse from '../../../../../node_modules/bootstrap/js/src/collapse' ;
32
43window . bootstrap = window . bootstrap || { } ;
54window . bootstrap . Collapse = Collapse ;
65
7- if ( nojQueryMode && Joomla && Joomla . getOptions ) {
6+ if ( Joomla && Joomla . getOptions ) {
87 // Get the elements/configurations from the PHP
98 const collapses = { ...Joomla . getOptions ( 'bootstrap.collapse' ) , ...Joomla . getOptions ( 'bootstrap.accordion' ) } ;
109 // Initialise the elements
Original file line number Diff line number Diff line change 1- import nojQueryMode from './nojquerymode.es6' ;
21import Dropdown from '../../../../../node_modules/bootstrap/js/src/dropdown' ;
32
43window . bootstrap = window . bootstrap || { } ;
54window . bootstrap . Dropdown = Dropdown ;
65
7- if ( nojQueryMode && Joomla && Joomla . getOptions ) {
6+ if ( Joomla && Joomla . getOptions ) {
87 // Get the elements/configurations from the PHP
98 const dropdowns = Joomla . getOptions ( 'bootstrap.dropdown' ) ;
109 // Initialise the elements
Original file line number Diff line number Diff line change 1- import nojQueryMode from './nojquerymode.es6' ;
21import Modal from '../../../../../node_modules/bootstrap/js/src/modal' ;
32
43Joomla = Joomla || { } ;
@@ -134,7 +133,7 @@ Joomla.iframeButtonClick = (options) => {
134133 }
135134} ;
136135
137- if ( nojQueryMode && Joomla && Joomla . getOptions ) {
136+ if ( Joomla && Joomla . getOptions ) {
138137 // Get the elements/configurations from the PHP
139138 const modals = Joomla . getOptions ( 'bootstrap.modal' ) ;
140139 // Initialise the elements
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- import nojQueryMode from './nojquerymode.es6' ;
21import Popover from '../../../../../node_modules/bootstrap/js/src/popover' ;
32import Tooltip from '../../../../../node_modules/bootstrap/js/src/tooltip' ;
43
54window . bootstrap = window . bootstrap || { } ;
65window . bootstrap . Popover = Popover ;
76window . bootstrap . Tooltip = Tooltip ;
87
9- if ( nojQueryMode && Joomla && Joomla . getOptions ) {
8+ if ( Joomla && Joomla . getOptions ) {
109 // Get the elements/configurations from the PHP
1110 const tooltips = Joomla . getOptions ( 'bootstrap.tooltip' ) ;
1211 const popovers = Joomla . getOptions ( 'bootstrap.popover' ) ;
Original file line number Diff line number Diff line change 1- import nojQueryMode from './nojquerymode.es6' ;
21import Scrollspy from '../../../../../node_modules/bootstrap/js/src/scrollspy' ;
32
43window . bootstrap = window . bootstrap || { } ;
54window . bootstrap . Scrollspy = Scrollspy ;
65
7- if ( nojQueryMode && Joomla && Joomla . getOptions ) {
6+ if ( Joomla && Joomla . getOptions ) {
87 // Get the elements/configurations from the PHP
98 const scrollspys = Joomla . getOptions ( 'bootstrap.scrollspy' ) ;
109 // Initialise the elements
You can’t perform that action at this time.
0 commit comments