Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
integration
prechecker
Commits
62a38a4e
Commit
62a38a4e
authored
Oct 26, 2017
by
David Monllaó
Browse files
Merge branch 'MDL-60559-master' of
git://github.com/andrewnicols/moodle
parents
a272c256
9da0be8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
calendar/templates/upcoming_mini.mustache
View file @
62a38a4e
...
...
@@ -31,13 +31,56 @@
{
}
}}
<div
class=
"card-text content"
>
<div
class=
"card-text content"
id=
"month-upcoming-mini-
{{
uniqid
}}
"
>
{{#
events
}}
<div
class=
"event"
>
<div
{{
!
}}
class=
"event"
{{
!
}}
data-eventtype-
{{
calendareventtype
}}
="1"
{{
!
}}
>
<span>
{{#
icon
}}{{#
pix
}}
{{
key
}}
,
{{
component
}}
,
{{
alttext
}}
{{/
pix
}}{{/
icon
}}
</span>
<a
href=
"
{{
viewurl
}}
"
>
{{{
name
}}}
</a>
<div
class=
"date"
>
{{{
formattedtime
}}}
</div>
<hr>
</div>
<hr>
{{/
events
}}
</div>
{{#
js
}}
require([
'jquery',
'core_calendar/selectors',
'core_calendar/events',
], function(
$,
CalendarSelectors,
CalendarEvents
) {
var root = $('#month-upcoming-mini-
{{
uniqid
}}
');
$('body').on(CalendarEvents.filterChanged, function(e, data) {
M.util.js_pending("month-upcoming-mini-
{{
uniqid
}}
-filterChanged");
// A filter value has been changed.
// Find all matching cells in the popover data, and hide them.
var target = $("#month-upcoming-mini-
{{
uniqid
}}
").find(CalendarSelectors.eventType[data.type]);
var transitionPromise = $.Deferred();
if (data.hidden) {
transitionPromise.then(function() {
return target.slideUp('fast').promise();
});
} else {
transitionPromise.then(function() {
return target.slideDown('fast').promise();
});
}
transitionPromise.then(function() {
M.util.js_complete("month-upcoming-mini-
{{
uniqid
}}
-filterChanged");
return;
});
transitionPromise.resolve();
});
});
{{/
js
}}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment