Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-webui
/
28e9ed8bd98c41f4f6426b8959af5f4289c4b4f0
/
.
/
app
/
common
/
directives
/
loader.js
blob: 887cc40f4992721327b6ab70b5cfb0eaf235e808 [
file
] [
log
] [
blame
]
window
.
angular
&&
(
function
(
angular
)
{
'use strict'
;
angular
.
module
(
'app.common.directives'
).
directive
(
'loader'
,
function
()
{
return
{
'restrict'
:
'E'
,
'template'
:
require
(
'./loader.html'
),
scope
:
{
loading
:
'='
}
};
});
})(
window
.
angular
);