UNPKG

jszhuyin

Version:

Smart Chinese Zhuyin Input Method in JavaScript.

23 lines (21 loc) 855 B
<!doctype html> <html lang="zh-TW"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>JSZhuyin frame</title> <!-- This page is here to make JSZhuyin self-contain. The original intention was to access this page hosted off-origin so people don't need to load the database multiple times. However, browsers have since block presistent data access from iframes by default, making this technique obsolete. It is now recommended to load JSZhuyin into a worker instead. --> <script defer src="bopomofo_encoder.js"></script> <script defer src="jszhuyin_data_pack.js"></script> <script defer src="storage.js"></script> <script defer src="data_loader.js"></script> <script defer src="jszhuyin.js"></script> <script defer src="jszhuyin_server.js"></script> </head> </html>