Skip to content
View iMoses's full-sized avatar
  • ag-Grid
  • London, UK
Block or Report

Block or report iMoses

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. ag-grid/ag-charts ag-grid/ag-charts Public

    AG Charts is a fully-featured and highly customizable JavaScript charting library. The professional choice for developers building enterprise applications

    TypeScript 106 8

  2. young-steveo/bottlejs young-steveo/bottlejs Public

    A powerful dependency injection micro container for JavaScript applications

    JavaScript 1.3k 67

  3. react-headless-collapsible: a React ... react-headless-collapsible: a React hook to create collapsible components (inspired by `react-collapsible`)
    1
    import { useCollapsible } from './use-collapsible';
    2
    
                  
    3
    export function Collapsible({ open, title, className, lazyLoad, onToggle, children, ...props }) {
    4
      const { isOpen, shouldRender, getTriggerProps, getContentProps } = useCollapsible({ open, onToggle });
    5
      const classNames = [className, 'collapsible'];
  4. jQuery Plugin wrapInGroups jQuery Plugin wrapInGroups
    1
    /**
    2
     * Takes a jQuery collection and wraps each 'groupSize' items with 'wrapHtml'
    3
     * Example: $('#Example span').wrapInGroups('<div/>', 4);
    4
     * Will wrap every 4 span's inside #Example with a div
    5
     * See for yourself: http://jsfiddle.net/M9ZFh/