get-nested-configs-inner.html (313B)
1 <!DOCTYPE html> 2 <script src="utils.js"></script> 3 <title>Send the results of getNestedConfigs() to the embedder</title> 4 <script> 5 const [key] = parseKeylist(); 6 const configs = window.fence.getNestedConfigs(); 7 const data_to_send = [configs.length]; 8 writeValueToServer(key, data_to_send.join(",")); 9 </script> 10 </html>