Changeset 788952
- Timestamp:
- 10/16/2013 08:48:40 PM (12 years ago)
- Location:
- bootstrap-shortcodes/trunk
- Files:
-
- 3 added
- 4 edited
-
bootstrap-shortcodes.php (modified) (5 diffs)
-
css/admin.css (modified) (2 diffs)
-
images/dwicons.png (modified) (previous)
-
inc/bs_tooltip.php (added)
-
js/init.js (added)
-
js/plugins/tooltip.js (added)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bootstrap-shortcodes/trunk/bootstrap-shortcodes.php
r785988 r788952 4 4 Plugin URI: https://github.com/TheWebShop/bootstrap-shortcodes 5 5 Description: A simple shortcode generator. Add buttons, columns, toggles and alerts to your theme. 6 Version: 1. 4.36 Version: 1.5.0 7 7 Author: Kevin Attfield 8 8 Author URI: https://github.com/Sinetheta … … 19 19 require_once('inc/bs_icons.php'); 20 20 require_once('inc/bs_lead.php'); 21 require_once('inc/bs_tooltip.php'); 21 22 22 23 class BootstrapShortcodes{ … … 30 31 'buttons', 31 32 'icons', 32 'lead' 33 'lead', 34 'tooltip' 33 35 ); 34 36 … … 46 48 47 49 if(!is_admin()){ 48 if( isset($options['chk_default_options_css']) && $options['chk_default_options_css'] ) {50 if( isset($options['chk_default_options_css']) && $options['chk_default_options_css'] ) { 49 51 wp_enqueue_style("bs_bootstrap", plugins_url('css/bootstrap.css', __FILE__ ) ); 50 52 wp_enqueue_style("bs_shortcodes", plugins_url('css/shortcodes.css', __FILE__ ) ); 51 53 } 52 if( isset($options['chk_default_options_js']) && $options['chk_default_options_js'] ) 53 wp_enqueue_script('bs_bootstrap', plugins_url('js/bootstrap.js', __FILE__ ) ,array('jquery')); 54 if( isset($options['chk_default_options_js']) && $options['chk_default_options_js'] ) { 55 wp_enqueue_script('bs_bootstrap', plugins_url('js/bootstrap.js', __FILE__ ) , array('jquery')); 56 } 57 wp_enqueue_script('bs_init', plugins_url('js/init.js', __FILE__ ) , array('bs_bootstrap')); 54 58 } else { 55 59 wp_enqueue_style("bs_admin_style", plugins_url('css/admin.css', __FILE__ ) ); … … 104 108 "chk_default_options_buttons" => "1", 105 109 "chk_default_options_icons" => "1", 106 "chk_default_options_lead" => "1" 110 "chk_default_options_lead" => "1", 111 "chk_default_options_tooltip" => "1" 107 112 ); 108 113 update_option( 'bs_options', $arr ); -
bootstrap-shortcodes/trunk/css/admin.css
r784413 r788952 7 7 .wp_themeSkin .mceSplitButton span.mce_bs_wells, 8 8 .wp_themeSkin .mceSplitButton span.mce_bs_buttons, 9 .wp_themeSkin .mceSplitButton span.mce_bs_tooltip, 9 10 .wp_themeSkin span.mce_bs_icons, 10 11 .wp_themeSkin span.mce_bs_lead { … … 57 58 .wp_themeSkin .mceSplitButtonSelected .mceSplitButton span.mce_bs_buttons { 58 59 background-position: -107px 0px !important; 60 } 61 62 .wp_themeSkin .mceSplitButton span.mce_bs_tooltip { 63 background-position: -170px -19px !important; 64 } 65 .wp_themeSkin .mceSplitButton:hover span.mce_bs_tooltip, 66 .wp_themeSkin .mceSplitButtonSelected .mceSplitButton span.mce_bs_tooltip { 67 background-position: -170px 0px !important; 59 68 } 60 69 -
bootstrap-shortcodes/trunk/readme.txt
r785988 r788952 4 4 Requires at least: 3.0 5 5 Tested up to: 3.6 6 Stable tag: 1. 4.36 Stable tag: 1.5.0 7 7 License: GNU General Public License v2.0 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 27 27 == Changelog == 28 28 29 = 1.5 = 30 * Added support for tooltips 31 29 32 = 1.4 = 30 33 * Added support for tabs
Note: See TracChangeset
for help on using the changeset viewer.