Plugin Directory

Changeset 2058926


Ignore:
Timestamp:
03/28/2019 01:25:44 PM (7 years ago)
Author:
wordpresshandbuch
Message:

Just a typo and some comment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wh-eyecatcher/trunk/wh-eyecatcher.php

    r1857832 r2058926  
    44Plugin URI: https://wordpress-handbuch.com/wh-eyecatcher
    55Description: Add a floating slogan to eyery page of your website
    6 Version: 1.0.0
     6Version: 1.0.1
    77Author: WordPress-Handbuch
    88Author URI: https://wordpress-handbuch.com
    9     Copyright 2018 Richard Eisenmenger
     9    Copyright 2019 Richard Eisenmenger
    1010    This program is free software; you can redistribute it and/or modify
    1111    it under the terms of the GNU General Public License, version 2, as
     
    2020*/
    2121if( !defined( 'WH_EYECATCHER_VERSION' ) )
    22     define( 'WH_EYECATCHER_VERSION', '1.0.0' );
     22    define( 'WH_EYECATCHER_VERSION', '1.0.1' );
    2323
    2424class WH_Eyecatcher {
    2525    static $instance = false;
    2626    private function __construct() {
    27         // back end
    28         add_action      ( 'init', array( $this, 'load_textdomain'               ), 1            );
     27        add_action( 'init',                     array( $this, 'load_textdomain' ), 1 );
    2928        add_action( 'admin_enqueue_scripts',    array( $this, 'admin_scripts' ) );
    3029        add_action( 'admin_init',               array( $this, 'page_init' ) );
     
    5554
    5655    public function admin_scripts() {
    57         wp_enqueue_script( 'wh-eyecatcer-admin', plugins_url('lib/js/admin.js', __FILE__), array(), WH_EYECATCHER_VERSION, 'all' );
     56        wp_enqueue_script( 'wh-eyecatcher-admin', plugins_url('lib/js/admin.js', __FILE__), array(), WH_EYECATCHER_VERSION, 'all' );
    5857    }
    5958
Note: See TracChangeset for help on using the changeset viewer.