1. New Router and Base Page Class architecture to avoid circular references and conform to module bundler requirements. \n 2. Relative path bug fix for lib/validation.js file to work using module bundler.
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
|
||||
import { BasePage } from "../base.js";
|
||||
import BasePage from "../base.js";
|
||||
|
||||
export class PageServices extends BasePage {
|
||||
export default class PageServices extends BasePage {
|
||||
static hash = hashPageServices;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
constructor(router) {
|
||||
super(router);
|
||||
}
|
||||
|
||||
initialize() {
|
||||
|
||||
Reference in New Issue
Block a user