Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-webui
/
1a2bd74d8fa38f0848eca12759e03d162c09d236
/
.
/
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
);