Skip to content

Commit c53000b

Browse files
author
Claudéric Demers
authoredAug 10, 2016
Merge pull request #39 from naturalatlas/bugfix-serverside-window
Bugfix: fixed server-side rendering (window undefined)
2 parents 7fc34be + a015f28 commit c53000b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/SortableContainer/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default function SortableContainer(WrappedComponent, config = {withRef: f
2424
pressDelay: 0,
2525
useWindowAsScrollContainer: false,
2626
hideSortableGhost: true,
27-
contentWindow: window,
27+
contentWindow: typeof window !== 'undefined' ? window : null,
2828
lockToContainerEdges: false,
2929
lockOffset: '50%'
3030
};

‎src/utils.js

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export const events = {
1616
};
1717

1818
export const vendorPrefix = (function () {
19+
if (typeof window === 'undefined') return ''; // server environment
1920
let styles = window.getComputedStyle(document.documentElement, '');
2021
let pre = (Array.prototype.slice
2122
.call(styles)

0 commit comments

Comments
 (0)
Please sign in to comment.