Plugin Directory

Changeset 1147912


Ignore:
Timestamp:
04/28/2015 10:11:14 AM (11 years ago)
Author:
SecSign
Message:

new version 1.7.4

Location:
secsign/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • secsign/trunk/readme.txt

    r1147241 r1147912  
    33Tags: 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
    44Requires at least: 3.0.1
    5 Tested up to: 4.2
     5Tested up to: 4.2.1
    66Stable tag: trunk
    77License: GPLv2 or later
     
    140140
    141141== Changelog ==
     142
     143= 1.7.4 =
     144* Fixed javascript error that affects website which use the SecSign ID plugin only at the admin backend
    142145
    143146= 1.7.3 =
  • secsign/trunk/secsignfunctions.js

    r1147241 r1147912  
    1 // $Id: secsignfunctions.js,v 1.6 2015/04/22 12:26:52 titus Exp $
     1// $Id: secsignfunctions.js,v 1.7 2015/04/28 09:49:45 titus Exp $
    22 
    33/*!
     
    4444//responsive layout
    4545window.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    }
    4850    frameOption(frameoption, backend);
    4951};
    5052
    5153window.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    }
    5458});
    5559
  • secsign/trunk/secsignid_login.php

    r1147241 r1147912  
    33Plugin Name: SecSign
    44Plugin URI: https://www.secsign.com/add-it-to-your-website/
    5 Version: 1.7.3
     5Version: 1.7.4
    66Description: The plugin allows a user to login using a SecSign ID and his smartphone.
    77Author: SecSign Technologies Inc.
     
    99*/
    1010
    11 // $Id: secsignid_login.php,v 1.24 2015/04/27 15:11:15 titus Exp $
     11// $Id: secsignid_login.php,v 1.25 2015/04/28 09:50:30 titus Exp $
    1212
    1313global $secsignid_login_text_domain;
Note: See TracChangeset for help on using the changeset viewer.