Initial commit

This commit is contained in:
eduardogusmao
2019-08-27 11:32:32 -03:00
commit ac035071ec
392 changed files with 27015 additions and 0 deletions

47
javascript/bootstrap-transition.js vendored Normal file
View File

@@ -0,0 +1,47 @@
/* ===================================================
* bootstrap-transition.js v2.0.4
* http://twitter.github.com/bootstrap/javascript.html#transitions
* ===================================================
* Copyright 2012 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================== */
!function($) {
$(function() {
"use strict"; // Jshint ;_;.
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
* ======================================================= */
$.support.transition = (function() {
var transitionEnd = (function() {
var el = document.createElement('bootstrap')
, transEndEventNames = {
'WebkitTransition' : 'webkitTransitionEnd',
'MozTransition' : 'transitionend',
'OTransition' : 'oTransitionEnd',
'msTransition' : 'MSTransitionEnd',
'transition' : 'transitionend'
}
, name;
for (name in transEndEventNames) {
if (el.style[name] !== undefined) {
return transEndEventNames[name];
}
}
}());
return transitionEnd && {
end: transitionEnd
};
})();
});
}(window.jQuery);

59
javascript/theme.js Normal file
View File

@@ -0,0 +1,59 @@
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* theme.js
* @package theme_qualisaude
* @copyright 2015 onwards LMSACE Dev Team (http://www.lmsace.com)
* @author LMSACE Dev Team
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
(function($) {
var img = $("nav#header").find('.avatar').find('img[src$="/u/f2"]');
var src = img.attr('src');
img.attr('src', src + "_white");
/* var msg = $("header#header").find('#nav-message-popover-container .nav-link').find("img[src$='t/message']");
msgsrc = msg.attr('src');
msg.attr('src', msgsrc + "_white");
var note = $("header#header").find('#nav-notification-popover-container .nav-link').find("img[src$='i/notifications']");
var notesrc = note.attr('src');
note.attr('src', notesrc + "_white");*/
/* ------- Check navbar button status -------- */
if ($("#header .navbar-nav button").attr('aria-expanded') === "true") {
$("#header .navbar-nav").find('button').addClass('is-active');
}
/* ------ Event for change the drawer navbar style ------ */
$("#header .navbar-nav button").click(function() {
$this = $(this);
setTimeout(function() {
if ($this.attr('aria-expanded') === "true") {
$("#header .navbar-nav").find('button').addClass('is-active');
} else {
$("#header .navbar-nav").find('button').removeClass('is-active');
}
}, 200);
});
var foothtml = $('footer#page-footer').text();
if ($.trim(foothtml).length == 0) {
$('footer#page-footer').addClass('empty-footer');
}
addhtml = $('.address-head').text();
if ($.trim(addhtml).length == 0) {
$('.address-head').addClass('empty-address');
}
})(jQuery);