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

Block or report iMoses

Report abuse

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

Report abuse

Pinned Loading

  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 387 32

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

    A powerful dependency injection micro container for JavaScript applications

    JavaScript 1.3k 64

  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/