- fixed a bug where signature table update fails when signature panel was collapsed

- improved "toggle height" click observer for information panels
- updated "Sortable" JS library `1.3.0` -> '1.6.0'
This commit is contained in:
Mark Friedrich
2017-12-09 14:25:30 +01:00
parent f0c17976f0
commit 686ceede0a
7 changed files with 11 additions and 9 deletions

View File

@@ -55,7 +55,7 @@ requirejs.config({
bootstrapConfirmation: 'lib/bootstrap-confirmation', // v1.0.5 Bootstrap extension for inline confirm dialog - https://github.com/tavicu/bs-confirmation
bootstrapToggle: 'lib/bootstrap2-toggle.min', // v2.2.0 Bootstrap Toggle (Checkbox) - http://www.bootstraptoggle.com
lazyload: 'lib/jquery.lazyload.min', // v1.9.5 LazyLoader images - http://www.appelsiini.net/projects/lazyload
sortable: 'lib/sortable.min', // v1.3.0 Sortable - drag&drop reorder
sortable: 'lib/sortable.min', // v1.6.0 Sortable - drag&drop reorder - https://github.com/rubaxa/Sortable
// header animation
easePack: 'lib/EasePack.min',

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -55,7 +55,7 @@ requirejs.config({
bootstrapConfirmation: 'lib/bootstrap-confirmation', // v1.0.5 Bootstrap extension for inline confirm dialog - https://github.com/tavicu/bs-confirmation
bootstrapToggle: 'lib/bootstrap2-toggle.min', // v2.2.0 Bootstrap Toggle (Checkbox) - http://www.bootstraptoggle.com
lazyload: 'lib/jquery.lazyload.min', // v1.9.5 LazyLoader images - http://www.appelsiini.net/projects/lazyload
sortable: 'lib/sortable.min', // v1.3.0 Sortable - drag&drop reorder
sortable: 'lib/sortable.min', // v1.6.0 Sortable - drag&drop reorder - https://github.com/rubaxa/Sortable
// header animation
easePack: 'lib/EasePack.min',

View File

@@ -415,7 +415,7 @@ define([
});
// toggle height for a module
$(document).off('click.toggleModuleHeight').on('click.toggleModuleHeight', '.' + config.moduleClass, function(e){
contentStructure.on('click.toggleModuleHeight', '.' + config.moduleClass, function(e){
let moduleElement = $(this);
// get click position
let posX = moduleElement.offset().left;
@@ -441,7 +441,7 @@ define([
easing: 'easeOutSine',
complete: function(){
moduleElement.removeClass( config.moduleClosedClass );
moduleElement.removeData();
moduleElement.removeData('origHeight');
}
});
}else{

File diff suppressed because one or more lines are too long

View File

@@ -1284,6 +1284,8 @@ code .fa {
// drag&drop (Sortable) ===========================================================================
.pf-sortable-ghost{
will-change: opacity;
transition: opacity 0.2s ease-out;
opacity: 0.7 !important;
.pf-module-handler-drag{