Skip to content

Commit

Permalink
Merge pull request #14 from ellekasai/fix-width-and-height
Browse files Browse the repository at this point in the history
add outerWidth and outerHeight
  • Loading branch information
ellekasai committed Dec 15, 2014
2 parents 10b3dc0 + 4e1cf4c commit 468dbb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions purplecoat.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ $(function () {
.css({
'top': $myself.offset().top,
'left': $myself.offset().left,
'width': $myself.width(),
'height': $myself.height() })
'width': $myself.outerWidth(),
'height': $myself.outerHeight() })
.fadeIn();

});
Expand Down
4 changes: 2 additions & 2 deletions purplecoat.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 468dbb8

Please sign in to comment.