Guest User

Untitled

a guest
Jun 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(document).ready(function() {
  3.  
  4. var app = $.sammy(function() {
  5.  
  6. this.get('#/', function() {
  7. clear_book_information_panel_when_needed();
  8. });
  9.  
  10. this.get('#/:book_name/Details', function() {
  11. load_book_information_from_name(this.params['book_name']);
  12. });
  13.  
  14. });
  15.  
  16. $(function() {
  17. app.run('#/');
  18. });
  19. });
  20. </script>
Add Comment
Please, Sign In to add comment