JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "init.blade.php"
Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/resources/views/instructor/bootcamp_resource/init.blade.php
File size: 3.63 KB
MIME-type: text/html
Charset: utf-8
<script type="text/javascript">
"use strict";
$(function() {
// Date range picker
if ($('.daterangepicker:not(.inited)').length) {
$('.daterangepicker:not(.inited)').daterangepicker();
$('.daterangepicker:not(.inited)').addClass('inited');
}
// icon picker
if ($('.icon-picker:not(.inited)').length) {
$('.icon-picker:not(.inited)').iconpicker();
$('.icon-picker:not(.inited)').addClass('inited');
}
//Select 2
if ($('#ajaxModal select.ol-select2:not(.inited)').length) {
$('#ajaxModal select.ol-select2:not(.inited)').select2({
dropdownParent: $('#ajaxModal')
});
$('#ajaxModal select.ol-select2:not(.inited)').addClass('inited');
}
if ($('#right-modal select.ol-select2:not(.inited)').length) {
$('#right-modal select.ol-select2:not(.inited)').select2({
dropdownParent: $('#right-modal')
});
$('#right-modal select.ol-select2:not(.inited)').addClass('inited');
}
if ($('select.ol-select2:not(.inited)').length) {
$('select.ol-select2:not(.inited)').select2();
$('select.ol-select2:not(.inited)').addClass('inited');
}
if ($('#ajaxModal select.select2:not(.inited)').length) {
$('#ajaxModal select.select2:not(.inited)').select2({
dropdownParent: $('#ajaxModal')
});
$('#ajaxModal select.select2:not(.inited)').addClass('inited');
}
if ($('#right-modal select.select2:not(.inited)').length) {
$('#right-modal select.select2:not(.inited)').select2({
dropdownParent: $('#right-modal')
});
$('#right-modal select.select2:not(.inited)').addClass('inited');
}
if ($('select.select2:not(.inited)').length) {
$('select.select2:not(.inited)').select2();
$('select.select2:not(.inited)').addClass('inited');
}
//Text editor
if ($('.text_editor:not(.inited)').length) {
$('.text_editor:not(.inited)').summernote({
height: 180, // set editor height
minHeight: null, // set minimum height of editor
maxHeight: null, // set maximum height of editor
focus: true, // set focus to editable area after initializing summernote
});
$('.text_editor:not(.inited)').addClass('inited');
}
$('.tagify:not(.inited)').each(function(index, element) {
var tagify = new Tagify(element, {
placeholder: '{{ get_phrase('Enter your keywords') }}'
});
$(element).addClass('inited');
});
var formElement;
if ($('.ajaxForm:not(.initialized)').length > 0) {
$('.ajaxForm:not(.initialized)').ajaxForm({
beforeSend: function(data, form) {
var formElement = $(form);
},
uploadProgress: function(event, position, total, percentComplete) {},
complete: function(xhr) {
setTimeout(function() {
distributeServerResponse(xhr.responseText);
}, 400);
if ($('.ajaxForm.resetable').length > 0) {
$('.ajaxForm.resetable')[0].reset();
}
},
error: function(e) {
console.log(e);
}
});
$('.ajaxForm:not(.initialized)').addClass('initialized');
}
});
</script>