this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Can re-use the UID as new window target name!

+3 -1
+1
src/components/compose.jsx
··· 383 383 // ); 384 384 385 385 const newWin = openCompose({ 386 + uid: UID.current, 386 387 editStatus, 387 388 replyToStatus, 388 389 draftStatus: {
+2 -1
src/utils/open-compose.js
··· 5 5 const top = Math.max(0, (screenHeight - 450) / 2); 6 6 const width = Math.min(screenWidth, 600); 7 7 const height = Math.min(screenHeight, 450); 8 + const winUID = opts.uid || Math.random(); 8 9 const newWin = window.open( 9 10 url, 10 - 'compose' + Math.random(), 11 + 'compose' + winUID, 11 12 `width=${width},height=${height},left=${left},top=${top}`, 12 13 ); 13 14