Skip to content

Commit e45584a

Browse files
committed
Set marginTop to 0 by default
And fix git url
1 parent 5dc9e1b commit e45584a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

cards.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Cards.DEFAULT_OPTIONS = {
159159

160160
cardMargin: 5,
161161

162-
marginTop: 56,
162+
marginTop: 0,
163163

164164
// Snap point
165165
smallScale: .4,

package.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ Package.describe({
22
name: 'jonperl:paper',
33
summary: 'Card interface for the web, like facebook paper',
44
version: '0.0.1',
5-
git: 'https://github.com/jperl/paper'
5+
git: 'https://github.com/jperl/paper.git'
66
});
77

88
Package.onUse(function (api) {
9-
api.use(['jquery', 'stevezhu:velocity.js'], 'web');
9+
api.versionsFrom('METEOR@0.9.0');
10+
api.use(['jquery', 'stevezhu:velocity.js@0.1.0'], 'web');
1011
api.addFiles(['hammer.js/hammer.js', 'cards.js'], 'web');
1112
api.export('Cards', 'web');
1213
});

0 commit comments

Comments
 (0)