Sign in
vanadium
/
release.go.x.ref
/
137c7e6e87fcdd512dd68760c028814a03a3a3b2
/
.
/
examples
/
pipetobrowser
/
browser
/
views
/
loading
/
view.js
blob: 9b04512a37a5290c064ac7227b28c97f9b9c7954 [
file
] [
log
] [
blame
]
import
{
View
}
from
'libs/mvc/view'
/*
* View representing a loading indicator
* @class
* @extends {View}
*/
export
class
LoadingView
extends
View
{
constructor
()
{
var
el
=
document
.
createElement
(
'p2b-loading'
);
super
(
el
);
}
}