Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
topogigiovanni committed Apr 28, 2016
1 parent 832fa8a commit 55754f1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions dist/dss.js
Original file line number Diff line number Diff line change
Expand Up @@ -1207,14 +1207,18 @@

getter : function(e){
return {
width : window.innerWidth,
height : window.innerHeight
innerWidth : window.innerWidth,
innerHeight : window.innerHeight,
outerWidth: window.outerWidth,
outerHeight: window.outerHeight
};
},
default : function(){
return {
width : window.innerWidth,
height : window.innerHeight
innerWidth : window.innerWidth,
innerHeight : window.innerHeight,
outerWidth: window.outerWidth,
outerHeight: window.outerHeight
};
}
};
Expand Down
Loading

0 comments on commit 55754f1

Please sign in to comment.