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');
|