snipe-it/resources/assets/js/bootstrap.js

41 lines
1 KiB
JavaScript
Raw Normal View History

window._ = require('lodash');
2016-03-25 01:18:05 -07:00
2017-01-11 01:27:02 -08:00
/**
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
* for JavaScript based Bootstrap features such as modals and tabs. This
* code may be modified to fit the specific needs of your application.
*/
//window.$ = window.jQuery = require('jquery');
/**
* jQuery UI is loaded here and then the tooltip is assigned another funtion name
* This resolves the issue of jquery-ui & bootstrap tooltip conflict
*/
require('jquery-ui');
jQuery.fn.uitooltip = jQuery.fn.tooltip;
/**
* Load boostrap
*/
require('bootstrap-less');
2016-03-25 01:18:05 -07:00
// require('admin-lte');
// require('chart.js');
// require('jquery-form-validator'); //says something about dependency
2017-01-11 01:27:02 -08:00
/**
* Echo exposes an expressive API for subscribing to channels and listening
* for events that are broadcast by Laravel. Echo and event broadcasting
* allows your team to easily build robust real-time web applications.
*/
2016-03-25 01:18:05 -07:00
2017-01-11 01:27:02 -08:00
// import Echo from "laravel-echo"
2016-03-25 01:18:05 -07:00
2017-01-11 01:27:02 -08:00
// window.Echo = new Echo({
// broadcaster: 'pusher',
// key: 'your-pusher-key'
// });
2016-03-25 01:18:05 -07:00