mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-20 08:29:54 -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);
|