I hereby claim:
- I am cdcharlebois on github.
- I am mxconner (https://keybase.io/mxconner) on keybase.
- I have a public key ASAYScDfGZyay7rPlcwpERMfVKr7MOMhDFpnI7sT3cMROwo
To claim this, I am signing this object:
| document.addEventListener("deviceready",function(){i.loadJSON("settings.json",function(e){var i=JSON.parse(e),l=localStorage.getItem("mx-prior-url");if(l)if(confirm("Do you want to initialize "+l+" ?"))r.initialize(l,i.hybridTabletProfile,i.hybridPhoneProfile,i.enableOffline,i.requirePin);else if(o=confirm("Do you want to use the default url: "+i.url+" ?"))localStorage.setItem("mx-prior-url",i.url),r.initialize(i.url,i.hybridTabletProfile,i.hybridPhoneProfile,i.enableOffline,i.requirePin);else{t=prompt("Enter a new URL to initialize:");localStorage.setItem("mx-prior-url",t),r.initialize(t,i.hybridTabletProfile,i.hybridPhoneProfile,i.enableOffline,i.requirePin)}else{var o=confirm("Do you want to use the default url: "+i.url+" ?");if(o)localStorage.setItem("mx-prior-url",i.url),r.initialize(i.url,i.hybridTabletProfile,i.hybridPhoneProfile,i.enableOffline,i.requirePin);else{var t=prompt("Enter a new URL to initialize:");localStorage.setItem("mx-prior-url",t),r.initialize(t,i.hybridTabletProfile,i.hybridPhoneProf |
I hereby claim:
To claim this, I am signing this object:
| //////////////////////////// | |
| // PLUGGABLE WIDGET PROPS // | |
| //////////////////////////// | |
| "Pluggable Property Group": { | |
| "prefix": "pprop-group", | |
| "body": [ | |
| "<propertyGroup caption=\"${1|General,Behavior,Data Source,Appearance|}\">", | |
| "</propertyGroup>" | |
| ] | |
| }, |
| .tabs-vertical { | |
| display: flex; | |
| > ul { | |
| // tabs | |
| flex: 1; | |
| border: none; | |
| > li { | |
| &.active { | |
| border-left: 0.35em solid $brand-inverse; | |
| margin-left: -0.35em; |
| /* add the "dg-checkboxes" class to your data grid in studio pro */ | |
| .mx-datagrid.dg-checkboxes tbody tr:after{ | |
| color: red; | |
| font-size: xx-large; | |
| position: absolute; | |
| left: -15px | |
| } | |
| .mx-datagrid.dg-checkboxes tbody tr.selected:after{ | |
| content:"☑"; | |
| } |
| // from https://stackoverflow.com/a/61511955/1513051 | |
| function waitForElement(selector) { | |
| return new Promise(resolve => { | |
| if (document.querySelector(selector)) { | |
| return resolve(document.querySelector(selector)); | |
| } | |
| const observer = new MutationObserver(mutations => { | |
| if (document.querySelector(selector)) { | |
| resolve(document.querySelector(selector)); |
| import {Text} from 'react-native'; | |
| Text.defaultProps = Text.defaultProps || {}; | |
| Text.defaultProps.maxFontSizeMultiplier = 1.25; |
| window.a = () => {console.log('hello')} | |
| const beforeFunc = (otherFunc) => { | |
| return () => { | |
| console.log('me first'); | |
| otherFunc(); | |
| } | |
| } | |
| window.a = beforeFunc(window.a); |
| .listview-horizontal > ul { | |
| display: flex; | |
| flex-wrap: wrap; | |
| } | |
| .listview-horizontal > ul > li { | |
| min-width: 200px; | |
| flex: 1; | |
| } |