Skip to content

Commit

Permalink
-Added chili syntax highlighter for slideshow
Browse files Browse the repository at this point in the history
  • Loading branch information
codenothing committed Sep 8, 2010
1 parent 8b102c0 commit 4178ed0
Show file tree
Hide file tree
Showing 25 changed files with 2,514 additions and 31 deletions.
2 changes: 1 addition & 1 deletion master/index.html
Expand Up @@ -8,7 +8,7 @@
</head>
<body>
<!--
Node Slide [VERSION]
Node SlideShow [VERSION]
[DATE]
Corey Hart @ http://www.codenothing.com
-->
Expand Down
2 changes: 1 addition & 1 deletion master/js.js
@@ -1,5 +1,5 @@
/**
* Node Slide [VERSION]
* Node SlideShow [VERSION]
* [DATE]
* Corey Hart @ http://www.codenothing.com
*/
Expand Down
2 changes: 1 addition & 1 deletion master/styles.css
@@ -1,5 +1,5 @@
/**
* Node Slide [VERSION]
* Node SlideShow [VERSION]
* [DATE]
* Corey Hart @ http://www.codenothing.com
*/
Expand Down
2 changes: 1 addition & 1 deletion node/Config.js
@@ -1,5 +1,5 @@
/**
* Node Slide [VERSION]
* Node SlideShow [VERSION]
* [DATE]
* Corey Hart @ http://www.codenothing.com
*/
Expand Down
2 changes: 1 addition & 1 deletion node/server.js
@@ -1,5 +1,5 @@
/**
* Node Slide [VERSION]
* Node SlideShow [VERSION]
* [DATE]
* Corey Hart @ http://www.codenothing.com
*/
Expand Down
2 changes: 1 addition & 1 deletion node/starttime.js
@@ -1,5 +1,5 @@
/**
* Node Slide [VERSION]
* Node SlideShow [VERSION]
* [DATE]
* Corey Hart @ http://www.codenothing.com
*/
Expand Down
2 changes: 1 addition & 1 deletion server.sh
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Node Slide [VERSION]
# Node SlideShow [VERSION]
# [DATE]
# Corey Hart @ http://www.codenothing.com
#
Expand Down
4 changes: 2 additions & 2 deletions slideshow/Config.js
@@ -1,5 +1,5 @@
/**
* Node Slide [VERSION]
* Node SlideShow [VERSION]
* [DATE]
* Corey Hart @ http://www.codenothing.com
*/
Expand All @@ -8,7 +8,7 @@ this.Config = {
enableSocket: true && ( 'WebSocket' in this ),

// Websocket connection
host: 'localhost',
host: '192.168.1.116',
port: 8124,

// Time takes to transition between slides
Expand Down
6 changes: 4 additions & 2 deletions slideshow/index.html
Expand Up @@ -7,12 +7,14 @@
<script type='text/javascript' src="jquery-1.4.2.js"></script>
<script type='text/javascript' src="Config.js"></script>
<script type='text/javascript' src="js.js"></script>
<script type='text/javascript' src="jquery.chili.js"></script>
<!-- <script type='text/javascript' src="recipes/jquery.chili.recipes.js.js"></script> -->
</head>
<body>
<div id='deck'>

<!--
Node Slide [VERSION]
Node SlideShow [VERSION]
[DATE]
Corey Hart @ http://www.codenothing.com
-->
Expand Down Expand Up @@ -49,7 +51,7 @@ <h1>Slide Header 3</h1>
<h2>Code Blocks</h2>
</hgroup>

<pre>
<pre class='chili-lang-js'>
$('testing').choose(function(){
$(this).cool();
});
Expand Down

0 comments on commit 4178ed0

Please sign in to comment.