Skip to content

Commit

Permalink
Remove console message and use the position method instead of the off…
Browse files Browse the repository at this point in the history
…set method - References #95
  • Loading branch information
gfranko committed Jan 14, 2013
1 parent 7ec8335 commit a74d269
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
10 changes: 4 additions & 6 deletions src/javascripts/jquery.selectBoxIt.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1618,13 +1618,13 @@

"position": "absolute",

"top": self.dropdown.offset().top,
"top": self.dropdown.position().top,

"bottom": self.dropdown.offset().bottom,
"bottom": self.dropdown.position().bottom,

"left": self.dropdown.offset().left,
"left": self.dropdown.position().left,

"right": self.dropdown.offset().right,
"right": self.dropdown.position().right,

"cursor": "pointer",

Expand Down Expand Up @@ -1657,8 +1657,6 @@

if(this.options["isMobile"]()) {

window.console.log('is mobile');

self._applyNativeSelect();

}
Expand Down
Loading

0 comments on commit a74d269

Please sign in to comment.