-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from percolatestudio/release/2.0.0
Release v2.0
- Loading branch information
Showing
21 changed files
with
2,699 additions
and
277 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
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
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,11 @@ | ||
# Contributing | ||
|
||
1. Write some code. | ||
2. Write some tests. | ||
3. From this package's local directory, start the test runner: | ||
|
||
``` | ||
$ meteor test-packages ./ | ||
``` | ||
4. Open http://localhost:3000/ in your browser to see the test results. |
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
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 |
---|---|---|
|
@@ -8,19 +8,20 @@ [email protected] | |
percolate:migrations | ||
[email protected] | ||
[email protected] | ||
[email protected].0 | ||
[email protected].7 | ||
blaze-html-templates | ||
[email protected].0 | ||
[email protected].1 | ||
jquery | ||
tracker@1.2.0 | ||
[email protected].1 | ||
tracker@1.3.2 | ||
[email protected].2 | ||
[email protected] | ||
[email protected].0 | ||
[email protected].2 | ||
[email protected].1 | ||
[email protected].3 | ||
spacebars | ||
[email protected] | ||
standard-minifier-css | ||
standard-minifier-js | ||
shell-server | ||
dynamic-import | ||
underscore | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
ecmascript |
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 |
---|---|---|
@@ -1 +1 @@ | ||
METEOR@2.8.0 | ||
METEOR@2.13 |
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
File renamed without changes.
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
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,20 @@ | ||
import { Template } from 'meteor/templating'; | ||
import { ReactiveVar } from 'meteor/reactive-var'; | ||
|
||
Template.hello.onCreated(function helloOnCreated() { | ||
// counter starts at 0 | ||
this.counter = new ReactiveVar(0); | ||
}); | ||
|
||
Template.hello.helpers({ | ||
counter() { | ||
return Template.instance().counter.get(); | ||
}, | ||
}); | ||
|
||
Template.hello.events({ | ||
'click button'(event, instance) { | ||
// increment the counter when button is clicked | ||
instance.counter.set(instance.counter.get() + 1); | ||
}, | ||
}); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.