Plugin Directory

Changeset 1957409


Ignore:
Timestamp:
10/16/2018 10:28:53 AM (7 years ago)
Author:
iamadi
Message:

v 1.4.1

Location:
widgets-for-siteorigin
Files:
325 added
3 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • widgets-for-siteorigin/trunk/admin/admin.php

    r1956952 r1957409  
    3232
    3333function wpinked_so_admin_page_content() {
     34    wp_enqueue_style( 'iw-admin-css' );
     35    wp_enqueue_script( 'iw-admin-js' );
    3436?>
    3537    <style>
     
    3941        }
    4042        .uk-badge {
    41             background: #be003a;
     43            background: #be003a !important;
    4244            font-size: 10px;
    4345            border-radius: 15px;
  • widgets-for-siteorigin/trunk/inc/enqueue.php

    r1956952 r1957409  
    55function wpinked_so_admin_style() {
    66
    7     wp_enqueue_style( 'iw-admin-style', plugin_dir_url( __FILE__ ) . '../css/admin.css', array(), INKED_SO_VER );
    8     wp_enqueue_style( 'iw-admin-css', plugin_dir_url( __FILE__ ) . '../admin/admin.min.css', array(), INKED_SO_VER );
    9     wp_enqueue_script( 'iw-admin-js', plugin_dir_url( __FILE__ ) . '../admin/admin.js', array(), INKED_SO_VER, true );
     7    wp_register_style( 'iw-admin-css', plugin_dir_url( __FILE__ ) . '../css/admin.min.css', array(), INKED_SO_VER );
     8    wp_register_script( 'iw-admin-js', plugin_dir_url( __FILE__ ) . '../js/admin.js', array(), INKED_SO_VER, true );
    109
    1110}
  • widgets-for-siteorigin/trunk/readme.txt

    r1956952 r1957409  
    44Requires at least: 3.9
    55Tested up to: 4.9.8
    6 Stable tag: 1.4.0
     6Stable tag: 1.4.1
    77License: GPLv3 or later
    88
     
    8181
    8282== Changelog ==
     83
     84= 1.4.1 - October 16 2018 =
     85* Fixed bug with admin styling.
    8386
    8487= 1.4.0 - October 15 2018 =
  • widgets-for-siteorigin/trunk/widgets-for-siteorigin.php

    r1956952 r1957409  
    55 * Plugin URI: http://widgets.wpinked.com/
    66 * Description: A collection of highly customizable and thoughtfully crafted widgets. Built on top of the SiteOrigin Widgets Bundle.
    7  * Version: 1.4.0
     7 * Version: 1.4.1
    88 * Author: wpinked
    99 * Author URI: widgets.wpinked.com
     
    1919 */
    2020
    21 define( 'INKED_SO_VER', '1.4.0' );
     21define( 'INKED_SO_VER', '1.4.1' );
    2222
    2323// Allow JS suffix to be pre-set
  • widgets-for-siteorigin/trunk/widgets/ink-ardn-widget/ink-ardn-widget.php

    r1899639 r1957409  
    5050                    'expand'               => array(
    5151                        'type'                => 'checkbox',
    52                         'label'               => __( 'Open multiple toggles simultaneously?', 'wpinked-widgets' ),
     52                        'label'               => __( 'Open multiple toggles simultaneously ?', 'wpinked-widgets' ),
    5353                        'default'             => false
    5454                    ),
     
    6767                    'icon-close'           => array(
    6868                        'type'                => 'icon',
    69                         'label'               => __( 'Open Toggle Icon.', 'wpinked-widgets' ),
     69                        'label'               => __( 'Open Toggle Icon', 'wpinked-widgets' ),
    7070                    ),
    7171
     
    170170                    'gap'                  => array(
    171171                        'type'                => 'checkbox',
    172                         'label'               => __( 'Gap between toggles?', 'wpinked-widgets' ),
     172                        'label'               => __( 'Gap between toggles ?', 'wpinked-widgets' ),
    173173                        'default'             => true
    174174                    ),
  • widgets-for-siteorigin/trunk/widgets/ink-tabb-widget/ink-tabb-widget.php

    r1899639 r1957409  
    123123                    'orientation'          => array(
    124124                        'type'                => 'select',
    125                         'label'               => __( 'Oritentation', 'wpinked-widgets' ),
     125                        'label'               => __( 'Orientation', 'wpinked-widgets' ),
    126126                        'default'             => 'horizontal',
    127127                        'options'             => array(
     
    158158                        'type'                => 'select',
    159159                        'label'               => __( 'Icon Location', 'wpinked-widgets' ),
    160                         'default'             => 'flat',
     160                        'default'             => 'left',
    161161                        'options'             => array(
    162162                            'left'               => __( 'Left', 'wpinked-widgets' ),
Note: See TracChangeset for help on using the changeset viewer.