mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-23 00:04:03 -04:00
17 lines
354 B
JavaScript
17 lines
354 B
JavaScript
/**
|
|||
|
|
* To change this template, choose Tools | Templates
|
||
|
|
* and open the template in the editor.
|
||
|
|
*/
|
||
|
|
(function ($) {
|
||
|
|
$.gallery_reload = function() {
|
||
|
|
window.location.reload();
|
||
|
|
};
|
||
|
|
})(jQuery);
|
||
|
|
|
||
|
|
// Vertically align a block element's content
|
||
|
|
(function ($) {
|
||
|
|
$.gallery_location = function(location) {
|
||
|
|
window.location = location;
|
||
|
|
};
|
||
|
|
})(jQuery);
|