summaryrefslogtreecommitdiff
path: root/app/products/static
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2023-07-28 13:39:02 -0500
committerluxagraf <sng@luxagraf.net>2023-07-28 13:39:02 -0500
commit9a620cf42bf1fe6977e378bd834b41ff4a593dde (patch)
treecf41a0582681cecaf88a30bfe409f9c2be57972a /app/products/static
parent6e5897117124cd60ae81efb1574c6347f48e60e5 (diff)
main: removed some apps I wasn't using and added bak to git to preserve
a copy of old apps
Diffstat (limited to 'app/products/static')
-rw-r--r--app/products/static/product-loader.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/products/static/product-loader.js b/app/products/static/product-loader.js
deleted file mode 100644
index 6d04b61..0000000
--- a/app/products/static/product-loader.js
+++ /dev/null
@@ -1,10 +0,0 @@
-function add_products(){
- var el = document.getElementById("images_frame");
- if (el){
- var iframe='<iframe frameborder="0" style="border: #dddddd 1px solid;margin-left: 20px;width:330px; height:720px;" src="/luxproduct/insert/?textarea='+el.id+'"></iframe>';
- el.insertAdjacentHTML('afterend', iframe);
- }
-}
-document.addEventListener("DOMContentLoaded", function(event) {
- add_products();
-});