Theme Assets

This commit is contained in:
2025-11-20 23:10:06 -06:00
parent c6c900464c
commit 26b49edfb4
3151 changed files with 629141 additions and 0 deletions

19
assets/vendor/gmaps/umd.hbs vendored Normal file
View File

@@ -0,0 +1,19 @@
"use strict";
(function(root, factory) {
if(typeof exports === 'object') {
module.exports = factory({{{cjsDependencies}}});
}
else if(typeof define === 'function' && define.amd) {
define({{#if amdModuleId}}'{{amdModuleId}}', {{/if}}[{{{amdDependencies}}}], factory);
}
else {
root.{{globalAlias}} = factory({{{globalDependencies}}});
}
}(this, function({{dependencies}}) {
{{{code}}}
return {{objectToExport}};
}));