Changeset 523227
- Timestamp:
- 03/25/2012 01:33:56 AM (14 years ago)
- Location:
- wp-slimbox2/trunk
- Files:
-
- 6 added
- 5 deleted
- 2 edited
-
css (added)
-
css/slimbox2-rtl.css (added)
-
css/slimbox2.css (added)
-
css/xfarbtastic.css (added)
-
index.php (modified) (4 diffs)
-
javascript/admin.js (added)
-
javascript/farbtastic (deleted)
-
javascript/keypress.js (deleted)
-
readme.txt (modified) (3 diffs)
-
slimbox2-rtl.css (deleted)
-
slimbox2.css (deleted)
-
src/admin.js (added)
-
src/keypress.js (deleted)
Legend:
- Unmodified
- Added
- Removed
-
wp-slimbox2/trunk/index.php
r509132 r523227 5 5 Description: A Wordpress implementation of the Slimbox2 javascript, utilizing jQuery, originally written by Christophe Beyls. Requires WP 2.8+ 6 6 Author: Greg Yingling (malcalevak) 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author URI: http://transientmonkey.com/ 9 9 10 Copyright 201 0Transient Monkey, LLC10 Copyright 2012 Transient Monkey, LLC 11 11 12 12 This program is free software; you can redistribute it and/or modify … … 54 54 55 55 function wp_slimbox_styles() { 56 wp_register_style('slimbox2', WP_PLUGIN_URL.'/wp-slimbox2/ slimbox2.css','','1.1','screen');56 wp_register_style('slimbox2', WP_PLUGIN_URL.'/wp-slimbox2/css/slimbox2.css','','1.1','screen'); 57 57 wp_enqueue_style('slimbox2'); 58 58 if(__('LTR', 'wp-slimbox2')=='RTL') { 59 wp_register_style('slimbox2-RTL', WP_PLUGIN_URL.'/wp-slimbox2/ slimbox2-rtl.css','','1.0','screen');59 wp_register_style('slimbox2-RTL', WP_PLUGIN_URL.'/wp-slimbox2/css/slimbox2-rtl.css','','1.0','screen'); 60 60 wp_enqueue_style('slimbox2-RTL'); 61 61 } … … 142 142 143 143 function slimbox_admin_init() { 144 wp_register_style('farbtastic', WP_PLUGIN_URL.'/wp-slimbox2/javascript/farbtastic/farbtastic.css','','1.0','screen'); 145 wp_register_script('jquery_farbtastic', WP_PLUGIN_URL.'/wp-slimbox2/javascript/farbtastic/farbtastic.js',array('jquery'), '1.2'); 146 wp_register_script('load_farbtastic', WP_PLUGIN_URL.'/wp-slimbox2/javascript/farbtastic/load_farbtastic.js',array('jquery_farbtastic'), '1.0'); 147 wp_register_script('load_keypress', WP_PLUGIN_URL.'/wp-slimbox2/javascript/keypress.js',array('jquery'), '1.1'); 144 wp_register_script('load_admin', WP_PLUGIN_URL.'/wp-slimbox2/javascript/admin.js',array('farbtastic'), '1.0'); 148 145 register_setting( 'wp_slimbox_options', 'wp_slimbox', 'wp_slimbox_validate'); 149 146 } … … 154 151 155 152 function slimbox_adminhead() { 156 wp_enqueue_script('load_farbtastic'); 157 wp_enqueue_script('load_keypress'); 153 wp_enqueue_script('load_admin'); 158 154 } 159 155 -
wp-slimbox2/trunk/readme.txt
r509132 r523227 4 4 Tags: slimbox, slimbox2, lightbox, jQuery, picture, photo, image, overlay, display, lightbox2 5 5 Requires at least: 2.8 6 Stable Tag: 1.1. 16 Stable Tag: 1.1.2 7 7 8 8 A WordPress implementation of the Slimbox2 javascript. … … 16 16 Support forums are generously hosted by Ryan Hellyer of PixoPoint, <a href="http://pixopoint.com/forum/index.php?board=6.0">here</a>. 17 17 18 Recent Changes in v1.1.1:<br /> 19 1. Fix to resolve failures experienced by some users in v1.1. 18 Recent Changes in v1.1.2:<br /> 19 1. Utilizes built in Farbtastic javascripts. 20 2. Consolidated load_farbtastic and keypress.js 21 3. Moved css files to css folder. 20 22 21 23 == Installation == … … 71 73 72 74 == Changelog == 75 = 1.1.2 - Mar-24-2012 = 76 * Utilizes built in Farbtastic javascripts. 77 * Consolidated load_farbtastic and keypress.js 78 * Moved CSS files to css folder. 73 79 = 1.1.1 - Feb-22-2012 = 74 80 * Fix to resolve failures experienced by some users in v1.1.
Note: See TracChangeset
for help on using the changeset viewer.