Skip to content
View wagweb's full-sized avatar
🌎
Webnative
🌎
Webnative
Block or Report

Block or report wagweb

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. aspect-ratio-css aspect-ratio-css Public

    A simple SCSS script for fixed aspect ratios in HTML

    CSS 4

  2. flexbute flexbute Public

    A simple mobile first and flexbox based Grid system controlled by HTML attributes.

    CSS 2

  3. gulp-web-task-boilerplate gulp-web-task-boilerplate Public template

    A simple to use Gulp driven frontend web project template

    JavaScript 2

  4. java-event-controller java-event-controller Public

    A simple to use and lightweight Java event framework

    Java 1

  5. srollToUrlHash.js srollToUrlHash.js
    1
        window.addEventListener("load", function() {
    2
            var offset = -100;
    3
            if(window.location.hash != null && window.location.hash.length > 0) {
    4
                $(document).scrollTop($(window.location.hash).offset().top - offset);
    5
            }
  6. Queue.java Queue.java
    1
    package;
    2
    
                  
    3
    import java.util.ArrayList;
    4
    
                  
    5
    public class Queue<Type> {