Skip to content

Commit 501f7d8

Browse files
committed
Added many sections
1 parent 6eacf35 commit 501f7d8

File tree

7 files changed

+556
-320
lines changed

7 files changed

+556
-320
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
log/*.log
44
tmp/**
55
node_modules/
6-
.sass-cache
6+
.sass-cache
7+
/.idea

app/application.js

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
window.app = angular.module('slides', []);
2+
3+
/*
4+
window.app.directive('pre', function(){
5+
6+
var pre = {
7+
restrict: 'E',
8+
scope: {
9+
fill: '@',
10+
inline: '',
11+
code: '',
12+
class: '='
13+
},
14+
template: "<pre ng-class=\"{'inline': inline}\" class=\"{{ class }}\">" +
15+
"<code data-trim class=\"{{ code }}\">" +
16+
"{{ fill }}" +
17+
"</code>" +
18+
"</pre>",
19+
replace: true,
20+
link: function(scope, element, attrs){
21+
$scope.inline = attrs.hasOwnProperty('inline') || false;
22+
$scope.code = attrs.code || false;
23+
}
24+
}
25+
return pre;
26+
});
27+
*/
28+
29+
window.app.controller('hello', [function(f){
30+
31+
}]);

css/slideStyles.css

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.reveal section img.logo {
2+
outline: none;
3+
border: 0;
4+
background: none;
5+
box-shadow: none;
6+
width: 110%;
7+
}
8+
.reveal section h2 {
9+
margin-bottom: 30px;
10+
}
11+
strong {
12+
font-weight: bolder;
13+
}
14+
15+
.reveal section input, .reveal section button {
16+
font-size: 100%;
17+
}
18+
.reveal pre.inline {
19+
display: inline-block;
20+
text-transform: none;
21+
width: inherit;
22+
}

images/AngularJS-large.png

15.9 KB
Loading

0 commit comments

Comments
 (0)