2020-09-04 23:50:05 +08:00
|
|
|
/**
|
|
|
|
* Before you edit these, read the documentation on how these files are compiled:
|
2020-09-05 01:32:39 +08:00
|
|
|
* https://docs.phpvms.net/developers/building-assets
|
2020-09-04 23:50:05 +08:00
|
|
|
*
|
|
|
|
* Edits here don't take place until you compile these assets and then upload them.
|
|
|
|
*/
|
2018-03-13 06:30:52 +08:00
|
|
|
|
2019-08-30 20:08:00 +08:00
|
|
|
// Import the bids functionality
|
|
|
|
import { addBid, removeBid } from './bids';
|
|
|
|
|
2018-03-13 06:30:52 +08:00
|
|
|
require('./../bootstrap');
|
|
|
|
|
2019-08-28 03:08:42 +08:00
|
|
|
window.phpvms.bids = {
|
2019-08-30 20:08:00 +08:00
|
|
|
addBid,
|
|
|
|
removeBid,
|
2019-08-28 03:08:42 +08:00
|
|
|
};
|
|
|
|
|
2018-03-13 06:30:52 +08:00
|
|
|
// Import the mapping function
|
|
|
|
window.phpvms.map = require('../maps/index');
|