/[webpac2]/Webpacus/root/js/webpac.js
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /Webpacus/root/js/webpac.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 97 by dpavlin, Tue Nov 22 12:57:35 2005 UTC revision 137 by dpavlin, Thu Nov 24 22:29:39 2005 UTC
# Line 4  Line 4 
4  // Dobrica Pavlinusic dpavlin(at)rot13(dot)org 2005-11-22  // Dobrica Pavlinusic dpavlin(at)rot13(dot)org 2005-11-22
5    
6  function load_template(template_name) {  function load_template(template_name) {
7          alert('load_template '+template_name);          Logger.info('load_template '+template_name+' old template is '+$('template_name').value);
8          return;  
9            $('template_name').value = template_name;
10    
11            Logger.debug('results_form '+$('results_form'));
12    
13            new Ajax.Updater( 'results', '/results', {
14                    parameters: Form.serialize( $('results_form') ),
15                    asynchronous: 1,
16                    onLoading: function(request) {
17                            show_searching();
18                    },
19                    onLoaded: function(request) {
20                            Element.hide('searching');
21    /*                      hide_searching(); */
22                    }
23            } ) ;
24            return false;
25    }
26    
27    function show_searching() {
28            Element.show('searching');
29            new Effect.Fade('results', { duration: 0.3 });
30    }
31    
32    function hide_searching() {
33            Element.hide('searching');
34            //new Effect.Highlight('results');
35            new Effect.Appear('results', { duration: 0.3 });
36  }  }
37    

Legend:
Removed from v.97  
changed lines
  Added in v.137

  ViewVC Help
Powered by ViewVC 1.1.26