Skip to content

Commit f22cc8e

Browse files
author
Rhett Lowe
committed
Update
1 parent 501f7d8 commit f22cc8e

23 files changed

+4468
-259
lines changed

app/application.js

-31
This file was deleted.

css/slideStyles.css

+29-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,32 @@ strong {
1919
display: inline-block;
2020
text-transform: none;
2121
width: inherit;
22-
}
22+
}
23+
24+
.reveal pre.inline code {
25+
overflow: visible;
26+
}
27+
28+
.reveal .column {
29+
margin: 0.5em;
30+
display: inline-block;
31+
vertical-align: middle;
32+
}
33+
.reveal .column.two{
34+
width: 45%;
35+
}
36+
.reveal .left-align {
37+
text-align: left;
38+
}
39+
.reveal table {
40+
width: 100%;
41+
}
42+
.reveal table tr td{
43+
text-align: center;
44+
}
45+
.reveal table tr td:first-child{
46+
text-align: left;
47+
}
48+
.reveal table tr td:last-child{
49+
text-align: right;
50+
}

images/Misko8.jpg

177 KB
Loading

images/angularjs-shield.png

47.8 KB
Loading
137 KB
Loading
31.1 KB
Loading

index.html

+793-42
Large diffs are not rendered by default.

js/angular.min.js

+196-182
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/angular.min.js.map

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/app/application.js

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
app = angular.module('slides', []);
2+
3+
//window.app.directive('snippit', function(){
4+
// var copy = angular.copy;
5+
//
6+
// return {
7+
// restrict: 'E',
8+
// scope: true,
9+
// replace: true,
10+
// transclude: true,
11+
// template: "<pre ng-class=\"{inline: isInline}\">" +
12+
// "<code data-trim ng-non-bindable ng-transclude></code>" +
13+
// "</pre>",
14+
// compile: function (scope, elem) {
15+
// n = angular.extend({}, scope);
16+
// console.log(n);
17+
// },
18+
// link: function(scope, elem, attrs){
19+
// //elem.find('code').html(scope.inner);
20+
// scope.isInline = attrs.hasOwnProperty('inline');
21+
// }
22+
// }
23+
//});
24+
25+
app.controller('hello', [function(){
26+
27+
}]);
28+
29+
30+
31+
//angular.module('myApp', [])
32+
// .factory('myLogs', ['$http', function($http){
33+
// var myFact = function(){
34+
// //init script
35+
// this.reqUrl = '/includes/assets/scripts/rest/json.php';
36+
// this.logs = [];
37+
//
38+
// this.query = {
39+
// func: 'get_logs',
40+
// args: []
41+
// }
42+
// }
43+
// myFact.prototype.getLogs = function(time){
44+
// this.query.args = [time];
45+
// $http.get(this.reqUrl, this.query)
46+
// .success(function(data){
47+
// this.logs = data;
48+
// }).error(function(){
49+
// this.logs = [];
50+
// console.log('there is a problem!!');
51+
// });
52+
// };
53+
// }])
54+
// .controller('myCtrl', ['$scope', 'myLogs', function($scope, myLogs){
55+
// $scope.fac = new myLogs();
56+
// }]);
57+
58+
59+
60+
61+
62+
63+
64+
65+
66+
67+
68+
69+
70+
71+
72+
73+
74+
75+
76+
77+
78+
79+
80+
81+
82+
83+
84+
85+
86+

package.json

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"name": "reveal.js",
3+
"version": "2.6.0-dev",
4+
"description": "The HTML Presentation Framework",
5+
"homepage": "http://lab.hakim.se/reveal-js",
6+
"subdomain": "revealjs",
7+
"scripts": {
8+
"test": "grunt test",
9+
"start": ""
10+
},
11+
"author": {
12+
"name": "Hakim El Hattab",
13+
"email": "[email protected]",
14+
"web": "http://hakim.se"
15+
},
16+
"repository": {
17+
"type": "git",
18+
"url": "git://github.com/hakimel/reveal.js.git"
19+
},
20+
"engines": {
21+
"node": "~0.8.0"
22+
},
23+
"dependencies": {
24+
"underscore": "~1.5.1",
25+
"express": "~2.5.9",
26+
"mustache": "~0.7.2",
27+
"socket.io": "~0.9.13"
28+
},
29+
"devDependencies": {
30+
"grunt-contrib-qunit": "~0.2.2",
31+
"grunt-contrib-jshint": "~0.6.4",
32+
"grunt-contrib-cssmin": "~0.4.1",
33+
"grunt-contrib-uglify": "~0.2.4",
34+
"grunt-contrib-watch": "~0.5.3",
35+
"grunt-contrib-sass": "~0.5.0",
36+
"grunt-contrib-connect": "~0.4.1",
37+
"grunt-zip": "~0.7.0",
38+
"grunt": "~0.4.0"
39+
},
40+
"licenses": [
41+
{
42+
"type": "MIT",
43+
"url": "https://github.com/hakimel/reveal.js/blob/master/LICENSE"
44+
}
45+
]
46+
}

test/examples/assets/image1.png

21.5 KB
Loading

test/examples/assets/image2.png

10 KB
Loading

test/examples/barebones.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
7+
<title>reveal.js - Barebones</title>
8+
9+
<link rel="stylesheet" href="../../css/reveal.min.css">
10+
</head>
11+
12+
<body>
13+
14+
<div class="reveal">
15+
16+
<div class="slides">
17+
18+
<section>
19+
<h2>Barebones Presentation</h2>
20+
<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>
21+
</section>
22+
23+
<section>
24+
<h2>No Theme</h2>
25+
<p>There's no theme included, so it will fall back on browser defaults.</p>
26+
</section>
27+
28+
</div>
29+
30+
</div>
31+
32+
<script src="../../lib/js/head.min.js"></script>
33+
<script src="../../js/reveal.min.js"></script>
34+
35+
<script>
36+
37+
Reveal.initialize();
38+
39+
</script>
40+
41+
</body>
42+
</html>

test/examples/embedded-media.html

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
7+
<title>reveal.js - Embedded Media</title>
8+
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
10+
11+
<link rel="stylesheet" href="../../css/reveal.min.css">
12+
<link rel="stylesheet" href="../../css/theme/default.css" id="theme">
13+
</head>
14+
15+
<body>
16+
17+
<div class="reveal">
18+
19+
<div class="slides">
20+
21+
<section>
22+
<h2>Embedded Media Test</h2>
23+
</section>
24+
25+
<section>
26+
<iframe data-autoplay width="420" height="345" src="http://www.youtube.com/embed/l3RQZ4mcr1c"></iframe>
27+
</section>
28+
29+
<section>
30+
<h2>Empty Slide</h2>
31+
</section>
32+
33+
</div>
34+
35+
</div>
36+
37+
<script src="../../lib/js/head.min.js"></script>
38+
<script src="../../js/reveal.min.js"></script>
39+
40+
<script>
41+
42+
Reveal.initialize({
43+
transition: 'linear'
44+
});
45+
46+
</script>
47+
48+
</body>
49+
</html>

0 commit comments

Comments
 (0)