Plugin Directory

Changeset 1431985


Ignore:
Timestamp:
06/07/2016 01:52:54 AM (10 years ago)
Author:
nemolade
Message:

version update beta 1.0.4

Location:
nemo-frame/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • nemo-frame/trunk/bootstrap.php

    r1273676 r1431985  
    44Plugin URI:
    55Description: The nemo Frame WordPress Plugin is easily expand your service area.
    6 Version:     1.0.3
     6Version:     1.0.4
    77Author:      Nemolade Inc.
    88Author URI:  http://www.nemolade.com
  • nemo-frame/trunk/classes/nemoframe.php

    r1273676 r1431985  
    1212        protected $modules;
    1313
    14         const VERSION    = '1.0.3';
     14        const VERSION    = '1.0.4';
    1515        const PREFIX     = 'nemoframe_';
    1616        const DEBUG_MODE = false;
     
    4545         */
    4646        public static function load_resources() {
     47//          wp_register_script(
     48//              self::PREFIX . 'nemoframejs',
     49//              'http://www.nemolade.com/js/nemocube.jquery.min.js',
     50//              array( 'jquery' ),
     51//              self::VERSION,
     52//              true
     53//          );
    4754            wp_register_script(
    48                 self::PREFIX . 'nemoframejs',
    49                 'http://www.nemolade.com/js/nemocube.jquery.min.js',
    50                 array( 'jquery' ),
    51                 self::VERSION,
    52                 true
    53             );
    54 
     55                    self::PREFIX . 'nemoframejs',
     56                    'http://www.nemolade.com/khan/js/nemocube.jquery.js',
     57                    array( 'jquery' ),
     58                    self::VERSION,
     59                    true
     60            );
     61            wp_register_style(
     62                    self::PREFIX . 'nemoframecss',
     63                    'http://www.nemolade.com/khan/css/nemocube.css',
     64                    array(),
     65                    self::VERSION,
     66                    'all'
     67            );
     68           
    5569            wp_register_script(
    5670                self::PREFIX . 'nemoframelongpressjs',
     
    6175            );
    6276
    63             wp_register_script(
    64                 self::PREFIX . 'nemoframeuuidjs',
    65                 'http://www.nemolade.com/js/uuid.js',
    66                 array(),
    67                 self::VERSION,
    68                 'all'
    69             );
    70 
    71             wp_register_script(
    72                 self::PREFIX . 'nemoframecookiejs',
    73                 'http://www.nemolade.com/js/nemo_cookie.js',
    74                 array(),
    75                 self::VERSION,
    76                 'all'
    77             );
    78 
    79             wp_register_style(
    80                 self::PREFIX . 'nemoframecss',
    81                 'http://www.nemolade.com/css/nemocube.min.css',
    82                 array(),
    83                 self::VERSION,
    84                 'all'
    85             );
     77//          wp_register_script(
     78//              self::PREFIX . 'nemoframeuuidjs',
     79//              'http://www.nemolade.com/js/uuid.js',
     80//              array(),
     81//              self::VERSION,
     82//              'all'
     83//          );
     84
     85//          wp_register_script(
     86//              self::PREFIX . 'nemoframecookiejs',
     87//              'http://www.nemolade.com/js/nemo_cookie.js',
     88//              array(),
     89//              self::VERSION,
     90//              'all'
     91//          );
    8692
    8793            wp_enqueue_style( self::PREFIX . 'nemoframecss' );
    8894            wp_enqueue_script( self::PREFIX . 'nemoframejs' );
    89             wp_enqueue_script( self::PREFIX . 'nemoframeuuidjs' );
    90             wp_enqueue_script( self::PREFIX . 'nemoframecookiejs' );
     95//          wp_enqueue_script( self::PREFIX . 'nemoframeuuidjs' );
     96//          wp_enqueue_script( self::PREFIX . 'nemoframecookiejs' );
    9197            wp_enqueue_script( self::PREFIX . 'nemoframelongpressjs' );
    9298        }
     
    187193                'left_url' => '',
    188194                'id' => '',
    189                 'bg_on' => 1,
     195                'bg_on' => 0,
    190196                'cube_pos' => 1,
    191197                'plane_color' => '#fcee21',
    192198                'width' => '600px',
    193199                'height' => '300px',
     200                'cube_map' => 'false',
     201                'shadow_button' => 'false',
    194202                'animation' => 'true'
    195203            ), $atts);
  • nemo-frame/trunk/readme.txt

    r1431952 r1431985  
    33Author: Nemolade Inc.
    44Author URI: http://www.nemolade.com
    5 Stable tag: 1.0.3
     5Stable tag: 1.0.4
    66Contributors: nemolade
    77Tags: nemolade, nemoframe, nemo, frame, iframe, image, shortcode
     
    1515== Description ==
    1616
    17 TThe nemo Frame WordPress Plugin is easily expand your service area.
    18 Any area(image, video, card, text paragraph...) that you want can be expanded as a cube form via nemo Frame.
     17The nemo Frame WordPress Plugin is easily expand your service area.
     18Any area(image, video, card, text paragraph) that you want can be expanded as a cube form via nemo Frame.
    1919
    2020=
     
    8282== Changelog ==
    8383
     84= 1.0.4 =
     85* version update
     86
    8487= 1.0.3 =
    85 * change name of shortcode to 'nemoframe'.
     88* change name of shortcode to 'nemoframe'
    8689
    8790= 1.0.2 =
  • nemo-frame/trunk/views/nemoframe.php

    r1273676 r1431985  
    1010            planeColor: '<?php esc_attr_e($attributes['plane_color']); ?>',
    1111            cubePos: '<?php esc_attr_e($attributes['cube_pos']); ?>',
     12            nemoMapWidget: <?php esc_attr_e($attributes['cube_map']); ?>,
     13            showShadow: <?php esc_attr_e($attributes['shadow_button']); ?>,
    1214            animation: '<?php esc_attr_e($attributes['animation']); ?>'
    1315        });
Note: See TracChangeset for help on using the changeset viewer.