/lib restructuring

master
Hakim El Hattab 2012-07-01 16:38:49 -04:00
parent 2118a6295d
commit eaf525c9a7
12 changed files with 8 additions and 70 deletions

View File

@ -161,6 +161,7 @@ You can change the appearance of the speaker notes by editing the file at `slide
- API methods for adding or removing all event listeners
- The 'slidechange' event now includes currentSlide and previousSlide
- Fixed bug where 'slidechange' was firing twice when history was enabled
- Changed /lib structure
#### 1.3
- Revised keyboard shortcuts, including ESC for overview, N for next, P for previous. Thanks [mahemoff](https://github.com/mahemoff)

View File

@ -11,7 +11,7 @@
@font-face {
font-family: 'League Gothic';
src: url('../lib/fonts/leaguegothic/league_gothic-webfont.ttf') format('truetype');
src: url('../lib/leaguegothic/league_gothic-webfont.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

View File

@ -18,7 +18,7 @@
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/print.css" type="text/css" media="print">
<link rel="stylesheet" href="lib/css/zenburn.css">
<link rel="stylesheet" href="lib/highlight/zenburn.css">
</head>
<body>
@ -264,8 +264,8 @@ linkify( 'a' );
</div>
<!-- Optional libraries for code syntax highlighting and classList support in IE9 -->
<script src="lib/js/highlight.js"></script>
<script src="lib/js/classList.js"></script>
<script src="lib/highlight/highlight.js"></script>
<script src="lib/polyfills/classList.js"></script>
<script src="js/reveal.js"></script>
@ -317,7 +317,7 @@ linkify( 'a' );
</script>
<!-- the next two lines enable the speaker notes server -->
<script src="socket.io/socket.io.js"></script>
<script src="js/slidenotes.js"></script>
<!-- <script src="socket.io/socket.io.js"></script>
<script src="js/reveal.slidenotes.js"></script> -->
</body>
</html>

63
js/reveal.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@ io = io.listen(app);
var opts = {
port : 1947,
baseDir : __dirname + '/../'
baseDir : __dirname + '/../../'
};
io.sockets.on('connection', function(socket) {