Skip to content

Commit

Permalink
- fix
Browse files Browse the repository at this point in the history
  • Loading branch information
russll committed Aug 20, 2014
1 parent 19d9c56 commit 17526ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/paper/d-paper-shadow/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
function PaperShadow() {}
function Component() {}

module.exports = PaperShadow;
module.exports = Component;

PaperShadow.prototype.view = __dirname;
Component.prototype.view = __dirname;

PaperShadow.prototype.init = function () {
Component.prototype.init = function () {
this.model.setNull('z', 0);
this.model.setNull('animated', false);
this.model.setNull('splash', false);
Expand Down

0 comments on commit 17526ce

Please sign in to comment.