Skip to content

Commit 0812ab2

Browse files
committed
ensure getLinkId returns id.
1 parent 81c5bf9 commit 0812ab2

File tree

3 files changed

+291
-228
lines changed

3 files changed

+291
-228
lines changed

src/js/#browser.js

+2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ window.Widgets.Browser = {};
2121

2222
//get height of the element
2323
ns.oh = function($el) {
24+
console.log($el.outerHeight(true));
2425
return $el.outerHeight(true);
2526
}
2627

2728
//get width of the element
2829
ns.ow = function($el) {
30+
console.log($el.outerWidth(true));
2931
return $el.outerWidth(true);
3032
}
3133

0 commit comments

Comments
 (0)