Import HTTPD Eiffel

This commit is contained in:
Javier Velilla
2011-05-20 08:58:26 -03:00
parent 094dc09354
commit dfa30471e3
84 changed files with 3241 additions and 0 deletions

12
webroot/demo1/script.js Normal file
View File

@@ -0,0 +1,12 @@
$(document).ready(function(){
/* This code is executed after the DOM has been completely loaded */
$('nav a,footer a.up').click(function(e){
// If a link has been clicked, scroll the page to the link's hash target:
$.scrollTo( this.hash || 0, 1500);
e.preventDefault();
});
});