-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5efda00
Showing
9 changed files
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
tmp/* | ||
!empty | ||
|
||
# application / coding temp files | ||
.sass-cache | ||
.phptidy-cache | ||
*.phptidybak~ | ||
*.un~ | ||
*.swp | ||
*.swo | ||
*.sublime-project | ||
*.sublime-workspace | ||
|
||
# OS files to ignore | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
*.so | ||
*.log | ||
*.sql | ||
*.sqlite | ||
.DS_Store | ||
._.DS_Store | ||
.DS_Store? | ||
ehthumbs.db | ||
Icon? | ||
Thumbs.db | ||
.svn | ||
.AppleDouble | ||
._* | ||
|
||
*.tmproj | ||
/nbproject | ||
/nbproject/private/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Meteor packages used by this project, one per line. | ||
# | ||
# 'meteor add' and 'meteor remove' will edit this file for you, | ||
# but you can also edit it by hand. | ||
|
||
autopublish | ||
insecure | ||
preserve-inputs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
Presenteract | ||
==================== | ||
|
||
Easily create simple HTML/CSS/JS slideshows, which are interactive. | ||
|
||
Audience members can follow along on their cell phones, tablets, and computers, | ||
and can vote on polls, answer questions, provide feedback, and simply be able | ||
to read what's on the screen. | ||
|
||
|
||
Usage - as Presenter | ||
-------------------- | ||
|
||
WIP | ||
|
||
|
||
Usage - as Guest | ||
-------------------- | ||
|
||
Open application or load URL. | ||
|
||
Possibly load the active presentation. | ||
|
||
Enjoy the ride... the presenter is in charge of navigation. | ||
|
||
|
||
License | ||
-------------------- | ||
|
||
MIT License | ||
http://opensource.org/licenses/MIT | ||
Copyright (c) 2013 Alan Blount <[email protected]> | ||
(basically, do whatever you like) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/* CSS declarations go here */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<head> | ||
<title>presenteract</title> | ||
</head> | ||
|
||
<body> | ||
{{> hello}} | ||
</body> | ||
|
||
<template name="hello"> | ||
<h1>Hello World!</h1> | ||
{{greeting}} | ||
<input type="button" value="Click" /> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
if (Meteor.isClient) { | ||
Template.hello.greeting = function () { | ||
return "Welcome to presenteract."; | ||
}; | ||
|
||
Template.hello.events({ | ||
'click input' : function () { | ||
// template data, if any, is available in 'this' | ||
if (typeof console !== 'undefined') | ||
console.log("You pressed the button"); | ||
} | ||
}); | ||
} | ||
|
||
if (Meteor.isServer) { | ||
Meteor.startup(function () { | ||
// code to run on server at startup | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"meteor": { | ||
"git": "https://github.com/meteor/meteor.git", | ||
"branch": "master" | ||
}, | ||
"packages": {} | ||
} |