Skip to content

Commit

Permalink
fix: revert default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorosty committed Jan 26, 2024
1 parent b392800 commit 74c8266
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const createAttributes = attrs => ({
visibility: 'global',
shadowDOM: false,
clamp: true,
droppable: {},
droppable: true,
mediaQueries: {
small: 'screen and (max-width: 640px)',
medium: 'screen and (min-width: 640px) and (max-width: 1024px)',
Expand Down
2 changes: 1 addition & 1 deletion src/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ import logger from './logger';
* @property {boolean} [controls=true] Show controls
* @property {string} [visibility=global] Global visibility, 'restricted' to hide from window lists etc.
* @property {boolean} [clamp=true] Clamp the window position upon creation
* @property {boolean | {dataTransferProperty?: 'files' | 'items'}} [droppable={}] If window should have the default drop action
* @property {boolean | {dataTransferProperty?: 'files' | 'items'}} [droppable=true] If window should have the default drop action
* @property {WindowDimension} [minDimension] Minimum dimension
* @property {WindowDimension} [maxDimension] Maximum dimension
* @property {{name: string}} [mediaQueries] A map of matchMedia to name
Expand Down

0 comments on commit 74c8266

Please sign in to comment.