stat2025 commited on
Commit
347de41
·
verified ·
1 Parent(s): 6a0a18a

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +1 -2
index.html CHANGED
@@ -51,14 +51,13 @@
51
  }
52
  })();
53
 
54
- // تصدير للإكسل بحيث كلمة "اضغط هنا" هي الرابط
55
  function exportAllToExcel() {
56
  const rows = [];
57
  for (let i = 1; i <= TOTAL_PAGES; i++) {
58
  const link = pageUrl(i);
59
  rows.push({
60
  'الصفحة': `صفحة ${i}`,
61
- 'الرابط': { t: "s", v: "اضغط هنا", l: { Target: link } }
62
  });
63
  }
64
 
 
51
  }
52
  })();
53
 
 
54
  function exportAllToExcel() {
55
  const rows = [];
56
  for (let i = 1; i <= TOTAL_PAGES; i++) {
57
  const link = pageUrl(i);
58
  rows.push({
59
  'الصفحة': `صفحة ${i}`,
60
+ 'الرابط': link
61
  });
62
  }
63