Skip to content

Commit

Permalink
ensure getLinkId returns id.
Browse files Browse the repository at this point in the history
  • Loading branch information
wildone committed Jun 11, 2024
1 parent 81c5bf9 commit 0812ab2
Show file tree
Hide file tree
Showing 3 changed files with 291 additions and 228 deletions.
2 changes: 2 additions & 0 deletions src/js/#browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ window.Widgets.Browser = {};

//get height of the element
ns.oh = function($el) {
console.log($el.outerHeight(true));
return $el.outerHeight(true);
}

//get width of the element
ns.ow = function($el) {
console.log($el.outerWidth(true));
return $el.outerWidth(true);
}

Expand Down
Loading

0 comments on commit 0812ab2

Please sign in to comment.