Changeset 1147912
- Timestamp:
- 04/28/2015 10:11:14 AM (11 years ago)
- Location:
- secsign/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
secsignfunctions.js (modified) (2 diffs)
-
secsignid_login.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
secsign/trunk/readme.txt
r1147241 r1147912 3 3 Tags: two-factor authentication, two-factor, authentication, 2 factor authentication, login, sign in, single sign-on, challenge response, rsa, password, mobile, iphone, android, security, authenticator, authenticate, two step authentication, 2fa 4 4 Requires at least: 3.0.1 5 Tested up to: 4.2 5 Tested up to: 4.2.1 6 6 Stable tag: trunk 7 7 License: GPLv2 or later … … 140 140 141 141 == Changelog == 142 143 = 1.7.4 = 144 * Fixed javascript error that affects website which use the SecSign ID plugin only at the admin backend 142 145 143 146 = 1.7.3 = -
secsign/trunk/secsignfunctions.js
r1147241 r1147912 1 // $Id: secsignfunctions.js,v 1. 6 2015/04/22 12:26:52titus Exp $1 // $Id: secsignfunctions.js,v 1.7 2015/04/28 09:49:45 titus Exp $ 2 2 3 3 /*! … … 44 44 //responsive layout 45 45 window.onload = function () { 46 var width = document.getElementById("secsignidplugin").offsetWidth; 47 responsive(width); 46 var secsignidplugin = document.getElementById("secsignidplugin"); 47 if(secsignidplugin){ 48 responsive(secsignidplugin.offsetWidth); 49 } 48 50 frameOption(frameoption, backend); 49 51 }; 50 52 51 53 window.addEventListener('resize', function () { 52 var width = document.getElementById("secsignidplugin").offsetWidth; 53 responsive(width); 54 var secsignidplugin = document.getElementById("secsignidplugin"); 55 if(secsignidplugin){ 56 responsive(secsignidplugin.offsetWidth); 57 } 54 58 }); 55 59 -
secsign/trunk/secsignid_login.php
r1147241 r1147912 3 3 Plugin Name: SecSign 4 4 Plugin URI: https://www.secsign.com/add-it-to-your-website/ 5 Version: 1.7. 35 Version: 1.7.4 6 6 Description: The plugin allows a user to login using a SecSign ID and his smartphone. 7 7 Author: SecSign Technologies Inc. … … 9 9 */ 10 10 11 // $Id: secsignid_login.php,v 1.2 4 2015/04/27 15:11:15titus Exp $11 // $Id: secsignid_login.php,v 1.25 2015/04/28 09:50:30 titus Exp $ 12 12 13 13 global $secsignid_login_text_domain;
Note: See TracChangeset
for help on using the changeset viewer.