We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
h5.ui.indicatorは、第1引数にtarget、第2引数にoptionオブジェクトを取る。
これを、第1引数にオブジェクトを指定できるようにし、optionの中でtargetを指定できるようにする。
また、今まで通りの(target, option)のような渡し方も対応する。
// 今までの呼び出し方。この呼び出し方も今まで通り対応する。 h5.ui.indicator(document.body, { message: 'loading...' }); // 以下の指定方法にも対応する h5.ui.indicator({ target: document.body, message: 'loading...' });
The text was updated successfully, but these errors were encountered:
hifive#348 indicatorを、第1引数にオプションオブジェクトを指定できるようにしました。
b9a22e0
hifive#348 JSDoc修正。
59c118f
controller.indicatorには、h5.ui.indicatorとの違いを記述するようにしました。
hifive#348 JSDoc修正。引数名修正(target→param)
23bed98
fukudayasuo
No branches or pull requests
h5.ui.indicatorは、第1引数にtarget、第2引数にoptionオブジェクトを取る。
これを、第1引数にオブジェクトを指定できるようにし、optionの中でtargetを指定できるようにする。
また、今まで通りの(target, option)のような渡し方も対応する。
The text was updated successfully, but these errors were encountered: