Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-webui
/
ba5e3f3484c0de46f4f5fc5baf5804648179a9eb
/
.
/
app
/
common
/
directives
/
loader.js
blob: 8edc1282f9c1bf6c3c754e6d1959be6e33cea61b [
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
);