This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function( $, wp ) { | |
var $document = $( document ); | |
wp.media.view.Menu.prototype.ready = function() { | |
this.unset( 'video-playlist' ); | |
}; | |
// These views may break with back-compat shortcodes on WordPress.com | |
// Disable them until we sort things out. | |
wp.mce.views.unregister( 'audio' ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Blink | |
Turns on an LED on for one second, then off for one second, repeatedly. | |
Explaining what the code will do. Anything within /* *\/ or after // is ignored, and is a comment to yourself on what the piece of code will do (a great reminder after creating tens or hundreds of sketches). | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<br /> | |
<b>Notice</b>: Undefined property: stdClass::$data in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contribute/contribute.php</b> on line <b>424</b><br /> | |
<br /> | |
<b>Notice</b>: Trying to get property of non-object in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contribute/contribute.php</b> on line <b>424</b><br /> | |
<br /> | |
<b>Notice</b>: Undefined property: stdClass::$data in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contribute/contribute.php</b> on line <b>425</b><br /> | |
<br /> | |
<b>Notice</b>: Trying to get property of non-object in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contribute/contribute.php</b> on line <b>425</b><br /> | |
<br /> | |
<b>Notice</b>: Undefined property: stdClass::$data in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contrib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<br /> | |
<b>Notice</b>: Undefined property: stdClass::$data in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contribute/contribute.php</b> on line <b>424</b><br /> | |
<br /> | |
<b>Notice</b>: Trying to get property of non-object in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contribute/contribute.php</b> on line <b>424</b><br /> | |
<br /> | |
<b>Notice</b>: Undefined property: stdClass::$data in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contribute/contribute.php</b> on line <b>425</b><br /> | |
<br /> | |
<b>Notice</b>: Trying to get property of non-object in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contribute/contribute.php</b> on line <b>425</b><br /> | |
<br /> | |
<b>Notice</b>: Undefined property: stdClass::$data in <b>/nfs/c03/h04/mnt/166492/domains/staging.makezine.com/html/wp-content/themes/makeblog/includes/contrib |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: css/style.css | |
=================================================================== | |
--- css/style.css (revision 141566) | |
+++ css/style.css (working copy) | |
@@ -4843,6 +4843,247 @@ | |
border-left-color: #ffffff; | |
bottom: -10px; | |
} | |
+.panel { | |
+ margin-bottom: 20px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Predawn/predawn.tmTheme", | |
"copy_with_empty_selection": false, | |
"drag_text": false, | |
"draw_minimap_border": true, | |
"enable_tab_scrolling": false, | |
"font_face": "Source Code Pro", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Predawn/predawn.tmTheme", | |
"copy_with_empty_selection": false, | |
"drag_text": false, | |
"draw_minimap_border": true, | |
"enable_tab_scrolling": false, | |
"font_face": "Source Code Pro", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Template Name: URLS | |
*/ | |
$urls = 'http://google.com | |
http://31engine.com/weblogUpdates/1.cgi | |
http://zhuaxia.com/rpc/server.php'; | |
// $skuList = explode('\n\r', $_POST['skuList']); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( is_page_template( 'page-weekend-projects-2013.php' ) ) { | |
/** | |
* Add a meta box on the weekend projects page. | |
*/ | |
$field_data = array ( | |
'title_takeover' => array( | |
'fields' => array( | |
'first_row' => array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Working copy: /Users/jspurlock/Sites/vip/www/wp-content/themes/makeblog | |
Command: svn diff . | |
================================================================================ | |
Index: css/style.css | |
=================================================================== | |
--- css/style.css (revision 136469) | |
+++ css/style.css (working copy) | |
@@ -4924,6 +4924,7 @@ | |
} |