Bryant Sell
Bryant Sell
Looks like the change never got deployed to npm
Just kidding it looks like the change got removed in this commit https://github.com/plangrid/react-file-viewer/commit/78f15818295f0c55c549614083ce655cd2a67079#diff-227f34f5a8fb440046daea8d13f0c149 Current code in master: https://github.com/plangrid/react-file-viewer/blob/e474c12572d5d0960b8607c631d102a9348a4dd3/src/components/drivers/pdf-viewer.jsx#L129-L135
@michaelwolo can we get this change undone?
Made a pr to fix https://github.com/plangrid/react-file-viewer/pull/179
@jdhayford I think I figured out the issue here! It turns out Chrome `sync` storage has a max number of items. [Google Docs](https://developer.chrome.com/docs/extensions/reference/storage/#property-sync) I just started having this problem this...
@jdhayford this SO post suggests storing in local. Which we could for just the `Group` data. I don't see much gain in storing those key/value pairs in sync storage. Benefit...
There may be an issue with this change. I'm noticing my collapsed groups will uncollapse with no user interaction. Will need to investigate. Likely will need to make some modifications...
I believe this will do the trick https://stackoverflow.com/a/61328933/4965713
@jdhayford yes, that's how my original implementation was working. By using the `chromchrome.runtime.onStartup` listener I believe that is not a problem anymore. Yes, please check out when you can and...
I was able to slim down @idevwebs solution. I am also using a slider (AngularJS/Material) instead of two buttons. ``` onZoomChange() { let $chart = $('.orgchart'); $chart.css('transform', 'scale(1,1)'); let div...