source: vlo/branches/vlo-3.3/vlo-web-app/src/main/js/eu/clarin/cmdi/vlo/wicket/pages/vlo-searchform.js @ 6665

Last change on this file since 6665 was 6665, checked in by Twan Goosen, 9 years ago

Search button disabled and animated until search result returned. Fixes #800

File size: 1.3 KB
Line 
1/*
2 * Copyright (C) 2015 CLARIN
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18var interval;
19
20function startSearch() {
21    // after a short while start animating the search button
22    var element = $('form#search #searchbutton');
23    element.prop('disabled', true);
24
25    // this will animate (fade in, fade out) the search button
26    interval = setInterval(function () {
27        element.animate({opacity:'-=0.5'}, 500);
28        element.animate({opacity:'+=1'}, 500);
29    }, 500); // delay between 'loops'
30}
31
32function endSearch() {
33    // done searching, clean up
34    var element = $('form#search #searchbutton');
35    element.prop('disabled', false);
36   
37    // stop the animation
38    if(interval !== null) { 
39        clearInterval(interval);
40    }
41}
Note: See TracBrowser for help on using the repository browser.