Skip to content
View ppscvalentin's full-sized avatar

Organizations

@eaudeweb
Block or Report

Block or report ppscvalentin

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 Loading

  1. thehumaninterface/dance-cloud thehumaninterface/dance-cloud Public

    Platforma dansului contemporan românesc

    HTML

  2. Screen reader Screen reader
    1
    /**
    2
     * Visually hidden, but accessible
    3
     * https://css-tricks.com/places-its-tempting-to-use-display-none-but-dont/ 
    4
     */
    5
    .visuallyhidden { 
  3. debounce, throttle debounce, throttle
    1
    // https://davidwalsh.name/function-debounce
    2
    debounce = function(func, wait, immediate) {
    3
    	var timeout;
    4
    	return function() {
    5
    		var context = this, args = arguments;