Matt Miller
Matt Miller
Take a look at Relationships in the readme. You could set up your model so you could make the following call: ``` $event = $this->venue_model ->select('venues.name, venues.id') ->with('events') ->get_by('event_id', 11);...
@inda5th your statement "$result is returning TRUE because the DB ran the query successfully" is correct, however just because the query was successfully ran doesn't mean anything was changed, it...
@jamierumbelow I'd be interested in seeing how the exceptions approach would play out. Especially after reading your book on API design, I'm beginning to see the power in throwing exceptions....
Here is a temp fix untill i can offer a proper pull-request: Around line 649 in assets.php library file, replace the line `$new_href =` with the following code ``` //...
Thanks for the reply. I tried upgrading with the most recent coffee script build - still broken. If I figure out a solution I'll submit a pull request.
Update - I was able to read food probe 2 current and desired temps using this code ``` const test = (hex, start) => { const first = getRawValue(hex, start)...
I have no idea about profile data, though... I suspect you need to relate them to codes in the app itself to interpret.
How did you tune it? What is the new config?
The simplest approach would be for me too add broadcast events for when the user accepts (and dismisses and alert) https://github.com/facultymatt/angular-unsavedChanges/blob/develop/src/unsavedChanges.js#L209-L210 Would this work for your use case? You would...
I was able to achieve a similar result by using `map.addLayer(dataLayer);` where dataLayer is the flowLine. The following code works: ``` var dataLayer = new L.FlowLine(gpx, { recordsField: 'wpt', locationMode:...