Changeset 861592
- Timestamp:
- 02/20/2014 01:01:03 PM (12 years ago)
- Location:
- profit-button/trunk
- Files:
-
- 3 edited
-
probtn.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
start_probtn.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
profit-button/trunk/probtn.php
r860962 r861592 4 4 * Plugin URI: http://probtn.com 5 5 * Description: Floating Button is an interactive element that used to show custom content inside your application. If the button is tapped then the popup with Browser would open. The url in the Browser is set using settings on our server. 6 * Version: 1.9. 16 * Version: 1.9.2 7 7 * Author: hintsolutions 8 8 * Author URI: http://probtn.com … … 50 50 wp_enqueue_style( 'probtn-style' ); 51 51 52 wp_register_script( 'probtn-script', 'https://pizzabtn.herokuapp.com/javascripts/probtn.js', array( 'jquery' )); 52 wp_register_script( 'jquerypep-script', 'https://pizzabtn.herokuapp.com/javascripts/jquery.pep.min.js', array( 'jquery' )); 53 wp_enqueue_script( 'jquerypep-script' ); 54 55 $mainStyleCss = parse_url('https://pizzabtn.herokuapp.com/stylesheets/probtn.css'); 56 $jqueryPepPath = parse_url("https://pizzabtn.herokuapp.com/javascripts/jquery.pep.min.js"); 57 58 wp_register_script( 'probtn-script', 'https://pizzabtn.herokuapp.com/javascripts/probtn.js', array( 'jquery', 'jquerypep-script' )); 53 59 //wp_register_script( 'probtn-script', plugins_url('probtn.js', __FILE__), array( 'jquery' )); 54 60 wp_enqueue_script( 'probtn-script' ); 55 56 //wp_register_script( 'jquerypep-script', plugins_url('https://pizzabtn.herokuapp.com/javascripts/jquery.pep.min.js', __FILE__) );57 wp_register_script( 'jquerypep-script', 'https://pizzabtn.herokuapp.com/javascripts/jquery.pep.min.js', array( 'jquery' ));58 wp_enqueue_script( 'jquerypep-script' );59 60 $mainStyleCss = parse_url('https://pizzabtn.herokuapp.com/stylesheets/probtn.css');61 //$jqueryPepPath = parse_url(plugins_url('libs/jquery.pep.min.js', __FILE__));62 $jqueryPepPath = parse_url("https://pizzabtn.herokuapp.com/javascripts/jquery.pep.min.js");63 61 64 62 $options = get_option( 'probtn_settings' ); -
profit-button/trunk/readme.txt
r860962 r861592 5 5 Requires at least: 3.3 6 6 Tested up to: 3.5.1 7 Stable tag: 1.9. 17 Stable tag: 1.9.2 8 8 License: Licenced under LGPL 9 9 License URI: http://opensource.org/licenses/LGPL-3.0 … … 110 110 Fixed issue - button isn't showing on site which hasn't menu 111 111 112 = 1.9.2 = 113 Updated order of the scripts (dependence of probtn.js from jquery.pep.js) 114 112 115 == Arbitrary section 1 == 113 116 -
profit-button/trunk/start_probtn.php
r843791 r861592 62 62 }); 63 63 } 64 65 /*66 <?php67 print_r($_GET);68 ?>69 */
Note: See TracChangeset
for help on using the changeset viewer.