1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-28 09:39:42 +02:00
documize/gui/MODULE_REPORT.md

43 lines
622 B
Markdown
Raw Normal View History

## Module Report
### Unknown Global
**Global**: `Ember.testing`
**Location**: `app/services/tether.js` at line 20
```js
export default Ember.Service.extend({
createDrop() {
if (Ember.testing) {
return;
}
```
### Unknown Global
**Global**: `Ember.testing`
**Location**: `app/services/tether.js` at line 27
```js
},
createTooltip() {
if (Ember.testing) {
return;
}
```
### Unknown Global
**Global**: `Ember.Handlebars`
**Location**: `app/utils/model.js` at line 22
```js
setSafe(attr, value) {
this.set(attr, Ember.String.htmlSafe(Ember.Handlebars.Utils.escapeExpression(value)));
}
});
```