PageRenderTime 42ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/documentation/af.ui/$.ui.showMask.md

https://github.com/maoyao/appframework
Markdown | 37 lines | 22 code | 15 blank | 0 comment | 0 complexity | ef1c005e8ffa02a229ec6f932cdc8294 MD5 | raw file
  1. #$.ui.showMask(text);
  2. ```
  3. Show the loading mask
  4. ```
  5. ##Example
  6. ```
  7. $.ui.showMask()
  8. $.ui.showMask('Doing work')
  9. ```
  10. ##Parameters
  11. ```
  12. [text] String
  13. ```
  14. ##Returns
  15. ```
  16. undefined
  17. ```
  18. ##Detail
  19. $.ui.showMask(text) >This will show the loading mask. You can trigger this manually for long operations.
  20. ```
  21. $.ui.showMask("Loading...");
  22. ```