-
in relation with the OrbitJS official documentation at `https://github.com/orbitjs/ember-orbit#updating-records` I'm trying to access the attributes of a related record of a model retrieved with reac…
-
I haven't looked through other files yet, but I noticed that `jQuery` is imported here but apparently not used.
https://github.com/mydea/ember-indexeddb/blob/master/addon/adapters/indexed-db.js#L6
-
I have a model 'einstellungen' with its own IndexedDbAdapter:
`import IndexedDbAdapter from 'ember-indexeddb/adapters/indexed-db;`
`export default IndexedDbAdapter.extend({});`
I want to do som…
-
Given a hasOne/hasMany relationship with inverses like so:
```js
moon {
planet: hasOne('planet', { inverse: 'moons' })
}
planet {
moons: hasMany('moon', { inverse: 'planet' })
}
```
The…
-
I'm trying to switch a working Ember project from using Ember-Data to using Orbit.js (via Ember-Orbit).
I think I've set up everything correctly (IndexedDB, IndexedDB-Bucket and JSONAPI sources).
…
-
I'm not sure what I'm doing wrong. The docs make it sounds like all that is needed to use with ember-data is to install and create an adapter, but that didn't work for me. I also tried calling `indexe…
-
**URL**: https://santanderlink.santanderbank.com/gateway/
**Browser / Version**: Firefox 64.0
**Operating System**: Windows 8.1
**Tested Another Browser**: Yes
**Problem type**: Something else
*…
-
When I run:
```
beforeModel() {
this._super(...arguments);
return this.get('indexedDb').setup();
},
```
in my `application` route, I get the following error in IE 11
> Cannot redefine no…
-
I currently am working with this:
provider.tsx
```ts
import * as React from 'react';
import { DataProvider } from 'react-orbitjs';
import { Bucket } from '@orbit/core';
import Orbit, { Sourc…
-
Hello,
Thanks a lot for all the great work on jspm :thumbsup:
During development, when importing libraries split across many files such as React or Angular2, es6-module-loader loads all the required…