UNPKG

344 BJavaScriptView Raw
1'use strict';
2
3module.exports = {
4 name: require('./package').name,
5
6 contentFor(type, config) {
7 // we only need to add this div in non-test environments
8 // as for tests we will insert into the ember-testing div
9 if (type === 'body' && config.environment !== 'test') {
10 return '<div id="hk-slide-panels"></div>';
11 }
12 }
13};