frayerjj-frontend 0.1.8 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +1 -4
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as bootstrap from 'bootstrap';
|
|
2
2
|
|
|
3
|
-
const modal = {
|
|
3
|
+
export const modal = {
|
|
4
4
|
build: vars => {
|
|
5
5
|
let html =
|
|
6
6
|
'<div id="' + vars.id + '" class="modal" tabindex="-1">' +
|
|
@@ -47,9 +47,6 @@ const modal = {
|
|
|
47
47
|
}
|
|
48
48
|
};
|
|
49
49
|
|
|
50
|
-
export default { modal }; // Export only modal for now
|
|
51
|
-
|
|
52
|
-
|
|
53
50
|
/*import modal from "./modal.js";
|
|
54
51
|
import { ajax, getIntVar, pageInit } from "./helpers.js";
|
|
55
52
|
import { loading } from "./loading.js";
|