You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

progressbar.js 338 B

4 years ago
123456789101112
  1. (function () {
  2. var page = {
  3. isScroll: true,
  4. init: function ($page) {
  5. $page.find('.setProgressbar').on('tap', function () {
  6. var name = $(this).text().replace(/%/g, "");
  7. $('#progressbar1').progressSet(parseInt(name));
  8. });
  9. }
  10. };
  11. return page;
  12. })();