/lib restructuring
This commit is contained in:
parent
2118a6295d
commit
eaf525c9a7
|
@ -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
|
- API methods for adding or removing all event listeners
|
||||||
- The 'slidechange' event now includes currentSlide and previousSlide
|
- The 'slidechange' event now includes currentSlide and previousSlide
|
||||||
- Fixed bug where 'slidechange' was firing twice when history was enabled
|
- Fixed bug where 'slidechange' was firing twice when history was enabled
|
||||||
|
- Changed /lib structure
|
||||||
|
|
||||||
#### 1.3
|
#### 1.3
|
||||||
- Revised keyboard shortcuts, including ESC for overview, N for next, P for previous. Thanks [mahemoff](https://github.com/mahemoff)
|
- Revised keyboard shortcuts, including ESC for overview, N for next, P for previous. Thanks [mahemoff](https://github.com/mahemoff)
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'League Gothic';
|
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-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
10
index.html
10
index.html
|
@ -18,7 +18,7 @@
|
||||||
<link rel="stylesheet" href="css/main.css">
|
<link rel="stylesheet" href="css/main.css">
|
||||||
<link rel="stylesheet" href="css/print.css" type="text/css" media="print">
|
<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>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
@ -264,8 +264,8 @@ linkify( 'a' );
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Optional libraries for code syntax highlighting and classList support in IE9 -->
|
<!-- Optional libraries for code syntax highlighting and classList support in IE9 -->
|
||||||
<script src="lib/js/highlight.js"></script>
|
<script src="lib/highlight/highlight.js"></script>
|
||||||
<script src="lib/js/classList.js"></script>
|
<script src="lib/polyfills/classList.js"></script>
|
||||||
|
|
||||||
<script src="js/reveal.js"></script>
|
<script src="js/reveal.js"></script>
|
||||||
|
|
||||||
|
@ -317,7 +317,7 @@ linkify( 'a' );
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- the next two lines enable the speaker notes server -->
|
<!-- the next two lines enable the speaker notes server -->
|
||||||
<script src="socket.io/socket.io.js"></script>
|
<!-- <script src="socket.io/socket.io.js"></script>
|
||||||
<script src="js/slidenotes.js"></script>
|
<script src="js/reveal.slidenotes.js"></script> -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
63
js/reveal.min.js
vendored
63
js/reveal.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -11,7 +11,7 @@ io = io.listen(app);
|
||||||
|
|
||||||
var opts = {
|
var opts = {
|
||||||
port : 1947,
|
port : 1947,
|
||||||
baseDir : __dirname + '/../'
|
baseDir : __dirname + '/../../'
|
||||||
};
|
};
|
||||||
|
|
||||||
io.sockets.on('connection', function(socket) {
|
io.sockets.on('connection', function(socket) {
|
Loading…
Reference in New Issue
Block a user