0d1f38cf85
* Refactor all JS API calls #360 * Remove unused imports * Lint JS * Fix doubled api key * Formatting * Added extra logging to distance lookup * Remove the .editorconfig file in distrib * shell check fixes * Remove the .editorconfig file in distrib
14 lines
234 B
JavaScript
14 lines
234 B
JavaScript
|
|
// Import the bids functionality
|
|
import { addBid, removeBid } from './bids';
|
|
|
|
require('./../bootstrap');
|
|
|
|
window.phpvms.bids = {
|
|
addBid,
|
|
removeBid,
|
|
};
|
|
|
|
// Import the mapping function
|
|
window.phpvms.map = require('../maps/index');
|