UNPKG
dashing-framework
Version:
latest (1.13.0)
1.13.0
1.12.1
1.12.0
1.11.1
1.11.0
1.10.2
1.10.1
1.10.0
1.9.0
1.8.3
1.8.2
1.7.0
1.6.2
1.6.0
1.5.0
1.4.2
1.4.1
1.3.0
1.2.4
1.2.2
1.2.0
1.1.14
1.1.12
1.1.9
1.1.7
1.1.6
1.1.5
1.1.3
1.1.1
1.0.10
1.0.8
1.0.7
1.0.5
1.0.0
Style framework for Dash
github.com/samaritanministries/dashing
samaritanministries/dashing
dashing-framework
/
example
/
scripts
/
views
/
view_data.js
14 lines
(12 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
let
ModalTemplate
=
require
(
'../templates/modal_data.ejs'
)
export
default
class
extends
Backbone
.
View
{
initialize
(
) { }
modalSize
(
){
return
'modal'
}
render
(
) {
this
.
$el
.
html
(
ModalTemplate
());
return
this
; } }