Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Both commits are good to go. #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 38 additions & 20 deletions examples/config.php
Original file line number Diff line number Diff line change
@@ -1,20 +1,38 @@
<?PHP

$shell['title1'] = "jQuery BBQ";
$shell['link1'] = "http://benalman.com/projects/jquery-bbq-plugin/";

ob_start();
?>
<a href="http://benalman.com/projects/jquery-bbq-plugin/">Project Home</a>,
<a href="http://benalman.com/code/projects/jquery-bbq/docs/">Documentation</a>,
<a href="http://github.com/cowboy/jquery-bbq/">Source</a>
<?
$shell['h3'] = ob_get_contents();
ob_end_clean();

$shell['jquery'] = 'jquery-1.4.1.js';
//$shell['jquery'] = 'jquery-1.3.2.js';

$shell['shBrush'] = array( 'JScript' );

?>
<?php
// temporary debugging
$shell = array();
$base = '../';


// setup from my notes in index.php
$shell['titles'] = array('Ben Alman');
$shell['links'] = array('http://benalman.com/projects/jquery-bbq-plugin/');

// Predeclare example template vars
for ( $i = 1; $i < 6; $i++ ) {
$shell['h' . $i] = '';
$shell['title' . $i] = '';
$shell['link' . $i] = '';
}


// previous set up
$shell['title1'] = 'jQuery BBQ';
$shell['link1'] = 'http://benalman.com/projects/jquery-bbq-plugin/';

ob_start();
?>
<a href="http://benalman.com/projects/jquery-bbq-plugin/">Project Home</a>,
<a href="http://benalman.com/code/projects/jquery-bbq/docs/">Documentation</a>,
<a href="http://github.com/cowboy/jquery-bbq/">Source</a>
<?php

$shell['h3'] = ob_get_contents();
ob_end_clean();


$shell['jquery'] = 'jquery-1.4.1.js';
//$shell['jquery'] = 'jquery-1.3.2.js';

$shell['shBrush'] = array( 'JScript' );

Loading