main.js 294 B

1234567891011
  1. // main.js: Common JavaScript functions
  2. // ====================================
  3. var attachFastClick = Origami.fastclick;
  4. attachFastClick(document.body); // FastClick
  5. $(document).ready(function() {
  6. $("a").smoothScroll(); // jQuery Smooth Scroll
  7. $.goup(); // jQuery GoUp
  8. });