UNPKG
ember-tribute
Version:
latest (0.1.2)
0.1.2
0.1.0
0.0.1
Ember component for zurb/tribute.js
malayalirobz.github.io/ember-tribute
MalayaliRobz/ember-tribute
ember-tribute
/
index.js
16 lines
(11 loc)
•
296 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict'
;
module
.
exports
= {
name
:
require
(
'./package'
).
name
,
included
:
function
(
app
) {
this
.
_super
.
included
.
apply
(
this
,
arguments
);
let
hasSass = !!app.
registry
.
availablePlugins
[
'ember-cli-sass'
];
if
(!hasSass) { app.
import
(
'vendor/tribute.css'
); } } };