Thomas Schell
Thomas Schell
Hi, anybody managed to get localization working ?
I've made some progress with this. If I manually add rel="dcterms:hasPart" on my section, the add button show (meaning that createphp does not render the rel attribute). ``` html {%...
I've came up with a solution. This is probably not ideal, but it works for me and hopefully will help someone else. In my template I actually need to add...
I wish i could but i don't think the web audio api is implemented in react native. 2016-04-26 17:36 GMT+02:00 Brad Isbell [email protected]: > @tom-s https://github.com/tom-s Why wouldn't you use...
I might be wrong, but i think embedding a webview using web audio html5 api is not gonna work. My requirement is to make a native app, so normal webpage...
Hi guys, great project. I had a quick look at the reducers and I don't think there is any need for cloning or deep cloning objects. One usual way to...
for instance `case 'CREATE_ADDRESS_SUCCESS': user = _.cloneDeep(state); user.addresses.push(action.address);` could become `case 'CREATE_ADDRESS_SUCCESS': return { ...state, addresses: [ ...state.addresses, action.address ] }` It guaranties immutability because every action returns a new...