12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define("/uikit/progress-bars", ["jquery", "Site"], factory);
- } else if (typeof exports !== "undefined") {
- factory(require("jquery"), require("Site"));
- } else {
- var mod = {
- exports: {}
- };
- factory(global.jQuery, global.Site);
- global.uikitProgressBars = mod.exports;
- }
- })(this, function (_jquery, _Site) {
- "use strict";
- _jquery = babelHelpers.interopRequireDefault(_jquery);
- (0, _jquery.default)(document).ready(function ($$$1) {
- (0, _Site.run)();
- });
-
- (function () {
- (0, _jquery.default)('#exampleButtonStart').on('click', function () {
- (0, _jquery.default)('[data-plugin="progress"]').asProgress('start');
- });
- (0, _jquery.default)('#exampleButtonFinish').on('click', function () {
- (0, _jquery.default)('[data-plugin="progress"]').asProgress('finish');
- });
- (0, _jquery.default)('#exampleButtonGoto').on('click', function () {
- (0, _jquery.default)('[data-plugin="progress"]').asProgress('go', 50);
- });
- (0, _jquery.default)('#exampleButtonGotoPercentage').on('click', function () {
- (0, _jquery.default)('[data-plugin="progress"]').asProgress('go', '50%');
- });
- (0, _jquery.default)('#exampleButtonStop').on('click', function () {
- (0, _jquery.default)('[data-plugin="progress"]').asProgress('stop');
- });
- (0, _jquery.default)('#exampleButtonReset').on('click', function () {
- (0, _jquery.default)('[data-plugin="progress"]').asProgress('reset');
- });
- (0, _jquery.default)('#exampleButtonRandom').on('click', function (e) {
- e.preventDefault();
- (0, _jquery.default)('[data-plugin="progress"]').each(function () {
- var number = Math.round(Math.random(1) * 100) + '%';
- (0, _jquery.default)(this).asProgress('go', number);
- });
- });
- })();
- });
|