Browse
For agents
About
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses
/
4.2.0
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses
v4.2.0
Switch version
4.4.8
4.4.7
4.4.6
4.4.5
4.4.4
4.4.3
4.4.2
4.4.1
4.4.0
4.3.9.1
4.3.9
4.3.8
4.3.7
4.1.6.9
4.1.6.9.1
4.1.6.9.2
4.1.6.9.3
4.1.6.9.4
4.1.7
4.1.7.1
4.1.7.2
4.1.7.3
4.1.7.3.1
4.1.7.3.2
4.2.0
All 139 releases
Overview
Code
learnpress
/
assets
/
src
/
apps
/
js
/
admin
/
editor
/
store
/
modal-quiz-items.js
modal-quiz-items.js
in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.2.0, at assets/src/apps/js/admin/editor/store/modal-quiz-items.js
24 lines
464 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
import
getters
from
'
../getters/modal-quiz-items
'
;
2
import
mutations
from
'
../mutations/modal-quiz-items
'
;
3
import
actions
from
'
../actions/modal-quiz-items
'
;
4
5
const
$
=
window
.
jQuery
||
jQuery
;
6
7
const
Quiz
=
function
(
data
)
{
8
var
state
=
$
.
extend
(
{
9
quizId
:
false
,
10
pagination
:
'
'
,
11
status
:
'
'
,
12
}
,
data
.
chooseItems
)
;
13
14
return
{
15
namespaced
:
true
,
16
state
:
state
,
17
getters
:
getters
,
18
mutations
:
mutations
,
19
actions
:
actions
,
20
}
;
21
}
;
22
23
export
default
Quiz
;
24