Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroasterisk committed Apr 23, 2013
0 parents commit 5efda00
Show file tree
Hide file tree
Showing 9 changed files with 129 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .gitignore
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/
1 change: 1 addition & 0 deletions .meteor/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
local
8 changes: 8 additions & 0 deletions .meteor/packages
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
1 change: 1 addition & 0 deletions .meteor/release
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
none
35 changes: 35 additions & 0 deletions README.md
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)


1 change: 1 addition & 0 deletions presenteract.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* CSS declarations go here */
13 changes: 13 additions & 0 deletions presenteract.html
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>
19 changes: 19 additions & 0 deletions presenteract.js
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
});
}
7 changes: 7 additions & 0 deletions smart.json
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": {}
}

0 comments on commit 5efda00

Please sign in to comment.