Skip to content

Commit ccff688

Browse files
committed
maint(pat bumper): Update import for get_css_value.
1 parent ce50044 commit ccff688

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pat/bumper/bumper.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ export default Base.extend({
4646
const scroll_container_x = this.findScrollContainer("x");
4747

4848
const pos = {
49-
top: utils.getCSSValue(this.el, "top", true),
50-
right: utils.getCSSValue(this.el, "right", true),
51-
bottom: utils.getCSSValue(this.el, "bottom", true),
52-
left: utils.getCSSValue(this.el, "left", true),
49+
top: dom.get_css_value(this.el, "top", true),
50+
right: dom.get_css_value(this.el, "right", true),
51+
bottom: dom.get_css_value(this.el, "bottom", true),
52+
left: dom.get_css_value(this.el, "left", true),
5353
};
5454
const intersection_observer_config_y = {
5555
threshold: [1, 0.99, 0.97, 0.96, 0.95, 0.94, 0.93, 0.92, 0.91, 0.9],

0 commit comments

Comments
 (0)