Changeset 1431985
- Timestamp:
- 06/07/2016 01:52:54 AM (10 years ago)
- Location:
- nemo-frame/trunk
- Files:
-
- 4 edited
-
bootstrap.php (modified) (1 diff)
-
classes/nemoframe.php (modified) (4 diffs)
-
readme.txt (modified) (3 diffs)
-
views/nemoframe.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nemo-frame/trunk/bootstrap.php
r1273676 r1431985 4 4 Plugin URI: 5 5 Description: The nemo Frame WordPress Plugin is easily expand your service area. 6 Version: 1.0. 36 Version: 1.0.4 7 7 Author: Nemolade Inc. 8 8 Author URI: http://www.nemolade.com -
nemo-frame/trunk/classes/nemoframe.php
r1273676 r1431985 12 12 protected $modules; 13 13 14 const VERSION = '1.0. 3';14 const VERSION = '1.0.4'; 15 15 const PREFIX = 'nemoframe_'; 16 16 const DEBUG_MODE = false; … … 45 45 */ 46 46 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 // ); 47 54 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 55 69 wp_register_script( 56 70 self::PREFIX . 'nemoframelongpressjs', … … 61 75 ); 62 76 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 // ); 86 92 87 93 wp_enqueue_style( self::PREFIX . 'nemoframecss' ); 88 94 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' ); 91 97 wp_enqueue_script( self::PREFIX . 'nemoframelongpressjs' ); 92 98 } … … 187 193 'left_url' => '', 188 194 'id' => '', 189 'bg_on' => 1,195 'bg_on' => 0, 190 196 'cube_pos' => 1, 191 197 'plane_color' => '#fcee21', 192 198 'width' => '600px', 193 199 'height' => '300px', 200 'cube_map' => 'false', 201 'shadow_button' => 'false', 194 202 'animation' => 'true' 195 203 ), $atts); -
nemo-frame/trunk/readme.txt
r1431952 r1431985 3 3 Author: Nemolade Inc. 4 4 Author URI: http://www.nemolade.com 5 Stable tag: 1.0. 35 Stable tag: 1.0.4 6 6 Contributors: nemolade 7 7 Tags: nemolade, nemoframe, nemo, frame, iframe, image, shortcode … … 15 15 == Description == 16 16 17 T The 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.17 The 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. 19 19 20 20 = … … 82 82 == Changelog == 83 83 84 = 1.0.4 = 85 * version update 86 84 87 = 1.0.3 = 85 * change name of shortcode to 'nemoframe' .88 * change name of shortcode to 'nemoframe' 86 89 87 90 = 1.0.2 = -
nemo-frame/trunk/views/nemoframe.php
r1273676 r1431985 10 10 planeColor: '<?php esc_attr_e($attributes['plane_color']); ?>', 11 11 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']); ?>, 12 14 animation: '<?php esc_attr_e($attributes['animation']); ?>' 13 15 });
Note: See TracChangeset
for help on using the changeset viewer.