Changeset 1121498
- Timestamp:
- 03/26/2015 04:12:19 PM (11 years ago)
- Location:
- ultimate-under-construction
- Files:
-
- 27 added
- 4 edited
-
tags/1.8 (added)
-
tags/1.8/includes (added)
-
tags/1.8/includes/css (added)
-
tags/1.8/includes/css/flipclock.css (added)
-
tags/1.8/includes/css/plugin_styles.css (added)
-
tags/1.8/includes/display-functions.php (added)
-
tags/1.8/includes/images (added)
-
tags/1.8/includes/images/darkbind.png (added)
-
tags/1.8/includes/images/flatcardboard.png (added)
-
tags/1.8/includes/images/greywashwall.png (added)
-
tags/1.8/includes/images/lightbind.png (added)
-
tags/1.8/includes/images/oldmaths.png (added)
-
tags/1.8/includes/images/pooltable.png (added)
-
tags/1.8/includes/images/squairylight.png (added)
-
tags/1.8/includes/images/wavegrid.png (added)
-
tags/1.8/includes/js (added)
-
tags/1.8/includes/js/base.js (added)
-
tags/1.8/includes/js/countdown.js (added)
-
tags/1.8/includes/js/dailycounter.js (added)
-
tags/1.8/includes/js/flipclock.js (added)
-
tags/1.8/includes/js/uuc-script-farb.js (added)
-
tags/1.8/includes/js/uuc-script.js (added)
-
tags/1.8/includes/js/uuc-upload.js (added)
-
tags/1.8/includes/scripts.php (added)
-
tags/1.8/includes/uucadmin.php (added)
-
tags/1.8/readme.txt (added)
-
tags/1.8/ultimate-under-construction.php (added)
-
trunk/includes/js/uuc-script.js (modified) (1 diff)
-
trunk/includes/uucadmin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/ultimate-under-construction.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ultimate-under-construction/trunk/includes/js/uuc-script.js
r929713 r1121498 1 if (typeof background_color != 'undefined') { 2 (function ($) { 3 "use strict"; 1 (function ($) { 2 "use strict"; 4 3 5 var default_color = 'bfbfbf';4 var default_color = 'bfbfbf'; 6 5 7 function pickColor(color) { 8 $('#background-color').val(color); 6 function pickColor(color) { 7 $('#background-color').val(color); 8 } 9 function toggle_text() { 10 background_color = $('#background-color'); 11 if ('' === background_color.val().replace('#', '')) { 12 background_color.val(default_color); 13 pickColor(default_color); 14 } else { 15 pickColor(background_color.val()); 9 16 } 10 function toggle_text() { 11 background_color = $('#background-color'); 12 if ('' === background_color.val().replace('#', '')) { 13 background_color.val(default_color); 14 pickColor(default_color); 15 } else { 16 pickColor(background_color.val()); 17 } 18 19 $(document).ready(function () { 20 var background_color = $('#background-color'); 21 background_color.wpColorPicker({ 22 change: function (event, ui) { 23 pickColor(background_color.wpColorPicker('color')); 24 }, 25 clear: function () { 26 pickColor(''); 17 27 } 18 } 28 }); 29 $('#background-color').click(toggle_text); 19 30 20 $(document).ready(function () { 21 var background_color = $('#background-color'); 22 background_color.wpColorPicker({ 23 change: function (event, ui) { 24 pickColor(background_color.wpColorPicker('color')); 25 }, 26 clear: function () { 27 pickColor(''); 28 } 29 }); 30 $('#background-color').click(toggle_text); 31 toggle_text(); 31 32 32 toggle_text();33 }); 33 34 34 }); 35 36 }(jQuery)); 37 } 35 }(jQuery)); -
ultimate-under-construction/trunk/includes/uucadmin.php
r1081763 r1121498 169 169 function admin_register_head() { 170 170 $siteurl = get_option('siteurl'); 171 $url = $siteurl . '/wp-content/plugins/ ' . basename(dirname(__FILE__)) . 'css/plugin_styles.css';171 $url = $siteurl . '/wp-content/plugins/ultimate-under-construction/includes/css/plugin_styles.css'; 172 172 echo "<link rel='stylesheet' type='text/css' href='$url' />\n"; 173 173 } -
ultimate-under-construction/trunk/readme.txt
r1082154 r1121498 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.1 7 Stable tag: 1. 77 Stable tag: 1.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
ultimate-under-construction/trunk/ultimate-under-construction.php
r1082154 r1121498 6 6 Author: Morrowmedia 7 7 Author URI: http://www.morrowmedia.co.uk/ 8 Version: 1. 78 Version: 1.8 9 9 */ 10 10
Note: See TracChangeset
for help on using the changeset viewer.