1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

add comment

This commit is contained in:
Andrew Simachev 2024-11-06 09:59:24 +01:00
parent 67f84c9210
commit 74bdec9cab
No known key found for this signature in database
GPG key ID: 1DFE44B21443F0EF

View file

@ -139,6 +139,9 @@ class UtilObject {
window.setTimeout(() => S.Popup.open('page', param), S.Popup.getTimeout());
};
/**
Opens object based on user setting 'Open objects in fullscreen mode'
*/
openConfig (object: any, param?: any) {
S.Common.fullscreenObject ? this.openAuto(object, param) : this.openPopup(object, param);
};