Plugin Directory

Changeset 2967377


Ignore:
Timestamp:
09/15/2023 07:05:23 AM (3 years ago)
Author:
atomchat
Message:

Added skip for now to the installation process and tested with latest version

Location:
atomchat/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • atomchat/trunk/README.txt

    r2954671 r2967377  
    55Requires PHP: 5.6
    66Tested up to: 6.2
    7 Stable tag: 1.1.3
     7Stable tag: 1.1.4
    88License: GNU General Public License v2.0 or later
    99
     
    180180= 1.1.3 =
    181181* Added new layout for installation process
     182
     183= 1.1.4 =
     184* Added skip for now to the installation process
  • atomchat/trunk/atomchat.php

    r2954671 r2967377  
    44* Plugin Name: AtomChat
    55* Description: Voice, video & text chat for your WordPress site
    6 * Version: 1.1.3
     6* Version: 1.1.4
    77* Author: AtomChat
    88* Author URI: https://www.atomchat.com/
  • atomchat/trunk/css/installer.css

    r2954671 r2967377  
    129129    display: block;
    130130}
     131
     132.delete-icon{
     133    position: relative;
     134    display: inline-block;
     135    cursor: pointer;
     136    float: right;
     137}
     138
     139.delete-icon .icon{
     140    width: 24px;
     141    height: 24px;
     142    background-color: #fff;
     143    color: #000000;
     144    border-radius: 50%;
     145    text-align: center;
     146    line-height: 24px;
     147    font-weight: bold;
     148}
     149
     150.delete-icon .hover-text{
     151    position: absolute;
     152    top: 20px;
     153    left: 36%;
     154    transform: translateX(-50%);
     155    opacity: 0;
     156    background-color: rgba(0, 0, 0, 0.8);
     157    color: white;
     158    padding: 4x 8px;
     159    border-radius: 4px;
     160    font-size: 12px;
     161    transition: opacity 0,2s ease-in-out;
     162    width: 150px;
     163    text-align: center;
     164}
     165
     166.delete-icon:hover .hover-text{
     167    opacity:1;
     168}
  • atomchat/trunk/installer.php

    r2954671 r2967377  
    3535                    <div class="module form-module" id="license-form">
    3636                        <div class="atomchat_form">
     37                            <!--Skip for now-->
     38                            <div class="delete-icon" onclick="skipFornow()">
     39                            <a style="font-size: 16px;text-decoration: none;color: #000;font-weight: 600;">X</a>
     40                            <p class="hover-text">Add later from AtomChat</p>
     41                            </div>
     42                            <!--End Skip for now-->
    3743
    3844                            <!--AtomChat new code-->
  • atomchat/trunk/js/installer.js

    r2954671 r2967377  
    8989    window.document.cookie = key + "=" + value + "; expires=" + date.toGMTString() + "; path=/";
    9090}
     91
     92/**
     93 * Close the installer modal (skip for now)
     94**/
     95function skipFornow()
     96{
     97    jqcc("#license-form").fadeOut();
     98}
Note: See TracChangeset for help on using the changeset viewer.