130 lines
3.3 KiB
JavaScript
130 lines
3.3 KiB
JavaScript
/* ------------------------------------------------------------------------------
|
|
*
|
|
* # Learning page kit
|
|
*
|
|
* Specific JS code additions for learning html page kit - detailed view
|
|
*
|
|
* Version: 1.0
|
|
* Latest update: Oct 10, 2016
|
|
*
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
$(function() {
|
|
|
|
// Calendar
|
|
// ------------------------------
|
|
|
|
// Event colors
|
|
var eventColors = [
|
|
{
|
|
title: 'Data management',
|
|
start: '2014-11-02',
|
|
color: '#EF5350'
|
|
},
|
|
{
|
|
title: 'Web development',
|
|
start: '2014-11-02',
|
|
end: '2014-11-04',
|
|
color: '#26A69A'
|
|
},
|
|
{
|
|
title: 'UX design camp',
|
|
start: '2014-11-05',
|
|
end: '2014-11-07',
|
|
color: '#5C6BC0'
|
|
},
|
|
{
|
|
id: 999,
|
|
title: 'Business development',
|
|
start: '2014-11-09',
|
|
color: '#26A69A'
|
|
},
|
|
{
|
|
id: 999,
|
|
title: 'Business development',
|
|
start: '2014-11-16',
|
|
end: '2014-11-18',
|
|
color: '#26A69A'
|
|
},
|
|
{
|
|
title: 'Marketing strategy',
|
|
start: '2014-11-19',
|
|
end: '2014-11-22',
|
|
color: '#66BB6A'
|
|
},
|
|
{
|
|
title: 'Web development',
|
|
start: '2014-11-12T10:30:00',
|
|
end: '2014-11-12T12:30:00',
|
|
color: '#EC407A'
|
|
},
|
|
{
|
|
title: 'LESS language',
|
|
start: '2014-11-12T12:00:00',
|
|
color: '#EC407A'
|
|
},
|
|
{
|
|
title: 'SASS language',
|
|
start: '2014-11-12T14:30:00',
|
|
color: '#EC407A'
|
|
},
|
|
{
|
|
title: 'PHP language',
|
|
start: '2014-11-12T17:30:00',
|
|
color: '#EC407A'
|
|
},
|
|
{
|
|
title: 'Python language',
|
|
start: '2014-11-12T20:00:00',
|
|
color: '#EC407A'
|
|
},
|
|
{
|
|
title: 'Operations',
|
|
start: '2014-11-24',
|
|
end: '2014-11-26',
|
|
color: '#795548'
|
|
},
|
|
{
|
|
title: 'Finances',
|
|
start: '2014-11-27',
|
|
end: '2014-11-29',
|
|
color: '#FF7043'
|
|
}
|
|
];
|
|
|
|
// Initialize
|
|
$('a[href="#course-schedule"]').on('shown.bs.tab', function (e) {
|
|
$('.schedule').fullCalendar({
|
|
header: {
|
|
left: 'prev,next today',
|
|
center: 'title',
|
|
right: 'month,agendaWeek,agendaDay'
|
|
},
|
|
defaultDate: '2014-11-12',
|
|
editable: true,
|
|
events: eventColors
|
|
});
|
|
});
|
|
|
|
|
|
// CKEditor
|
|
// ------------------------------
|
|
|
|
CKEDITOR.replace( 'add-comment', {
|
|
height: '200px',
|
|
removeButtons: 'Subscript,Superscript',
|
|
toolbarGroups: [
|
|
{ name: 'styles' },
|
|
{ name: 'editing', groups: [ 'find', 'selection' ] },
|
|
{ name: 'basicstyles', groups: [ 'basicstyles' ] },
|
|
{ name: 'paragraph', groups: [ 'list', 'blocks', 'align' ] },
|
|
{ name: 'links' },
|
|
{ name: 'insert' },
|
|
{ name: 'colors' },
|
|
{ name: 'tools' },
|
|
{ name: 'others' },
|
|
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] }
|
|
]
|
|
});
|
|
});
|