update 234879955

This commit is contained in:
equippedcoding-master
2025-09-19 14:48:51 -05:00
parent 2732371d5c
commit 67ef31a4d0
21 changed files with 205 additions and 2 deletions

26
core/js/pages/_temp.js Normal file
View File

@@ -0,0 +1,26 @@
define([], function() {
function init(myapp,afsconfig){
}
return init;
});
(function(factory) {
var root = typeof self == 'object' && self.self === self && self || typeof global == 'object' && global.global === global && global;
if (typeof define === 'function' && define.amd) {
define([],function() {return factory(); });
} else if (typeof exports !== 'undefined') {
module.exports = factory();
} else {
root.AFSPayments = factory();// browser global.
}
})(function() {
return {}
});// !!!END!!!

17
core/js/pages/index.js Normal file
View File

@@ -0,0 +1,17 @@
define([], function() {
function init(app){
}
return init;
});