Global: Ember.uuid
Location: addon/components/mobiledoc-editor/component.js
at line 206
let componentHooks = {
[ADD_CARD_HOOK]: ({env, options, payload}, isEditing=false) => {
let cardId = Ember.uuid();
let cardName = env.name;
if (isEditing) {
Global: Ember.uuid
Location: addon/components/mobiledoc-editor/component.js
at line 234
},
[ADD_ATOM_HOOK]: ({env, options, payload, value}) => {
let atomId = Ember.uuid();
let atomName = env.name;
let destinationElementId = `mobiledoc-editor-atom-${atomId}`;
Global: Ember.testing
Location: addon/components/mobiledoc-editor/component.js
at line 425
_setExpandoProperty(editor) {
// Store a reference to the editor for the acceptance test helpers
if (this.element && Ember.testing) {
this.element[TESTING_EXPANDO_PROPERTY] = editor;
}
Global: Ember.Test
Location: tests/helpers/create-throwing-adapter.js
at line 24
export function setup(context) {
let origTestAdapter = Ember.Test.adapter;
context.__originalTestAdapter = origTestAdapter;
Global: Ember.Test
Location: tests/helpers/create-throwing-adapter.js
at line 27
context.__originalTestAdapter = origTestAdapter;
run(() => { Ember.Test.adapter = ThrowingAdapter.create(); });
}
Global: Ember.Test
Location: tests/helpers/create-throwing-adapter.js
at line 36
delete context.__originalTestAdapter;
Ember.Test.adapter = QUnitAdapter.create();
});
}