Sha256: 1b962331232964e69ee8de35705e837376b21038565b9a2072088ec50babb9bf

Contents?: true

Size: 606 Bytes

Versions: 6

Compression:

Stored size: 606 Bytes

Contents

// Basic JS functionality for one-time-password form. Designed to be used with jQuery and 
// Bootstrap.
//
// Automatically generated by the orthodox gem (https://github.com/katanacode/orthodox)
// (c) Copyright 2019 Katana Code Ltd. All Rights Reserved. 
  
// Initialize method called when jQuery ready
function init() {
  $("body").on("click", ".js-tfa-link", onClick);
}

// Callback when toggle links are clicked. Shows/hides form fields and links
function onClick(e){
  e.preventDefault();
  $(".js-tfa-link").toggleClass("d-none");
  $(".js-tfa-field-group").toggleClass("d-none");
}

jQuery(init);

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
orthodox-0.3.5 lib/generators/authentication/templates/javascript/tfa_forms.js
orthodox-0.3.4 lib/generators/authentication/templates/javascript/tfa_forms.js
orthodox-0.3.3 lib/generators/authentication/templates/javascript/tfa_forms.js
orthodox-0.3.2 lib/generators/authentication/templates/javascript/tfa_forms.js
orthodox-0.3.1 lib/generators/authentication/templates/javascript/tfa_forms.js
orthodox-0.3.0 lib/generators/authentication/templates/javascript/tfa_forms.js