mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-06-15 09:39:17 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
923df99443
|
@ -26,6 +26,13 @@
|
||||||
- add document list which can be exported as an archive
|
- add document list which can be exported as an archive
|
||||||
- search results can be exported
|
- search results can be exported
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
Changes in version 5.1.2
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
- do not show spinner when clipboard is loaded in menu (prevents flickering of
|
||||||
|
page)
|
||||||
|
- merged changes from 5.0.12
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.1.1
|
Changes in version 5.1.1
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
|
@ -372,6 +372,7 @@ $(document).ready( function() {
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
url = href;
|
url = href;
|
||||||
|
if(!element.data('no-spinner'))
|
||||||
element.prepend('<div style="position: _absolute; overflow: hidden; background: #f7f7f7; z-index: 1000; height: 200px; width: '+element.width()+'px; opacity: 0.7; display: table;"><div style="display: table-cell;text-align: center; vertical-align: middle; "><img src="../views/bootstrap/images/ajax-loader.gif"></div>');
|
element.prepend('<div style="position: _absolute; overflow: hidden; background: #f7f7f7; z-index: 1000; height: 200px; width: '+element.width()+'px; opacity: 0.7; display: table;"><div style="display: table-cell;text-align: center; vertical-align: middle; "><img src="../views/bootstrap/images/ajax-loader.gif"></div>');
|
||||||
$.get(url, function(data) {
|
$.get(url, function(data) {
|
||||||
element.html(data);
|
element.html(data);
|
||||||
|
|
|
@ -403,7 +403,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
|
||||||
|
|
||||||
if($this->params['enableclipboard']) {
|
if($this->params['enableclipboard']) {
|
||||||
echo " <div id=\"menu-clipboard\">";
|
echo " <div id=\"menu-clipboard\">";
|
||||||
echo " <div class=\"ajax\" data-view=\"Clipboard\" data-action=\"menuClipboard\"></div>";
|
echo " <div class=\"ajax\" data-no-spinner=\"true\" data-view=\"Clipboard\" data-action=\"menuClipboard\"></div>";
|
||||||
echo " </div>";
|
echo " </div>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user