Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

wall.js 856B

1234567891011121314151617181920212223242526272829
  1. 'use strict';
  2. //gallery
  3. $(document).ready(function() {
  4. // $('#lightgallery').lightGallery();
  5. // $('#lightgallery1').lightGallery();
  6. // $('#lightgallery2').lightGallery();
  7. // $('#lightgallery3').lightGallery();
  8. // $('#lightgallery4').lightGallery();
  9. // $('#lightgallery5').lightGallery();
  10. // $('#lightgallery6').lightGallery();
  11. // $('#lightgallery7').lightGallery();
  12. // $('#lightgallery8').lightGallery();
  13. // $('#lightgallery9').lightGallery();
  14. // $('#lightgallery10').lightGallery();
  15. // $('#lightgallery11').lightGallery();
  16. $('#post-new').hide();
  17. $('#post-message').keyup(function() {
  18. if (($(this).val() != "")) {
  19. $('#post-new').show();
  20. } else
  21. $('#post-new').hide();
  22. });
  23. });