| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /******/ (function() { // webpackBootstrap
- var __webpack_exports__ = {};
- /*!**********************************************************!*\
- !*** ./resources/js/pages/two-step-verification.init.js ***!
- \**********************************************************/
- /*
- Template Name: Skote - Admin & Dashboard Template
- Author: Themesbrand
- Website: https://themesbrand.com/
- Contact: themesbrand@gmail.com
- File: two step verification Init Js File
- */
- function moveToNext(elem, count) {
- if (elem.value.length > 0) {
- $("#digit" + count + "-input").focus();
- }
- }
- var count = 1;
- $(".two-step").keyup(function (e) {
- if (count == 0) {
- count = 1;
- }
- if (e.keyCode === 8) {
- if (count == 5) {
- count = 3;
- }
- $("#digit" + count + "-input").focus();
- count--;
- } else {
- if (count > 0) {
- count++;
- $("#digit" + count + "-input").focus();
- }
- }
- });
- /******/ })()
- ;
|