├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CRAN-RELEASE ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── default.R ├── dependency.R ├── deprecated.R ├── plot.R ├── theme.R ├── tippy.R └── utils.R ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── docs ├── 404.html ├── CNAME ├── LICENSE-text.html ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── examples.html │ ├── examples_files │ │ └── tippy-0.2.0 │ │ │ └── tippy.js │ └── index.html ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── index_files │ ├── htmlwidgets-1.2 │ │ └── htmlwidgets.js │ ├── htmlwidgets-1.3 │ │ └── htmlwidgets.js │ ├── tippy-binding-0.0.1 │ │ ├── lib │ │ │ └── tippyjs-2.5.2 │ │ │ │ ├── .gitignore │ │ │ │ └── tippy.all.min.js │ │ ├── tippy.js │ │ └── tippy.yaml │ ├── tippy-binding-0.1.0 │ │ └── tippy.js │ ├── tippyjs-2.5.2 │ │ └── tippy.all.min.js │ └── tippyjs-3.2.0 │ │ ├── themes │ │ ├── google.css │ │ ├── light-border.css │ │ ├── light.css │ │ └── translucent.css │ │ └── tippy.all.min.js ├── link.svg ├── logo.png ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── Rplot001.png │ ├── deprecated.html │ ├── dot-tippy_this.html │ ├── figures │ └── logo.png │ ├── index.html │ ├── is_selector.html │ ├── make_selector.html │ ├── make_selectors.html │ ├── methods.html │ ├── random_id.html │ ├── tippy-shiny.html │ ├── tippy.html │ ├── tippyDefault.html │ ├── tippyTheme.html │ ├── tippyThis.html │ ├── tippy_global_theme.html │ ├── tippy_plot.html │ ├── useTippy.html │ ├── use_tippy.html │ └── use_tippy_funcs.html ├── index.md ├── inst ├── htmlwidgets │ └── tippy.js └── packer │ └── tippy.js ├── man ├── deprecated.Rd ├── dot-tippy_this.Rd ├── figures │ └── logo.png ├── is_selector.Rd ├── make_selector.Rd ├── make_selectors.Rd ├── methods.Rd ├── random_id.Rd ├── tippy.Rd ├── tippyDefault.Rd ├── tippyTheme.Rd ├── tippyThis.Rd ├── tippy_global_theme.Rd ├── tippy_plot.Rd └── useTippy.Rd ├── package.json ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── srcjs ├── config │ ├── entry_points.json │ ├── externals.json │ ├── loaders.json │ ├── misc.json │ └── output_path.json ├── exts │ ├── bind.js │ ├── plot.js │ └── tippy.js └── index.js ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: John Coene 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/R/default.R -------------------------------------------------------------------------------- /R/dependency.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/R/dependency.R -------------------------------------------------------------------------------- /R/deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/R/deprecated.R -------------------------------------------------------------------------------- /R/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/R/plot.R -------------------------------------------------------------------------------- /R/theme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/R/theme.R -------------------------------------------------------------------------------- /R/tippy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/R/tippy.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/cran-comments.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | tippy.john-coene.com -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/articles/examples.html -------------------------------------------------------------------------------- /docs/articles/examples_files/tippy-0.2.0/tippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/articles/examples_files/tippy-0.2.0/tippy.js -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index_files/htmlwidgets-1.2/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/htmlwidgets-1.2/htmlwidgets.js -------------------------------------------------------------------------------- /docs/index_files/htmlwidgets-1.3/htmlwidgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/htmlwidgets-1.3/htmlwidgets.js -------------------------------------------------------------------------------- /docs/index_files/tippy-binding-0.0.1/lib/tippyjs-2.5.2/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules 3 | -------------------------------------------------------------------------------- /docs/index_files/tippy-binding-0.0.1/lib/tippyjs-2.5.2/tippy.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippy-binding-0.0.1/lib/tippyjs-2.5.2/tippy.all.min.js -------------------------------------------------------------------------------- /docs/index_files/tippy-binding-0.0.1/tippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippy-binding-0.0.1/tippy.js -------------------------------------------------------------------------------- /docs/index_files/tippy-binding-0.0.1/tippy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippy-binding-0.0.1/tippy.yaml -------------------------------------------------------------------------------- /docs/index_files/tippy-binding-0.1.0/tippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippy-binding-0.1.0/tippy.js -------------------------------------------------------------------------------- /docs/index_files/tippyjs-2.5.2/tippy.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippyjs-2.5.2/tippy.all.min.js -------------------------------------------------------------------------------- /docs/index_files/tippyjs-3.2.0/themes/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippyjs-3.2.0/themes/google.css -------------------------------------------------------------------------------- /docs/index_files/tippyjs-3.2.0/themes/light-border.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippyjs-3.2.0/themes/light-border.css -------------------------------------------------------------------------------- /docs/index_files/tippyjs-3.2.0/themes/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippyjs-3.2.0/themes/light.css -------------------------------------------------------------------------------- /docs/index_files/tippyjs-3.2.0/themes/translucent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippyjs-3.2.0/themes/translucent.css -------------------------------------------------------------------------------- /docs/index_files/tippyjs-3.2.0/tippy.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/index_files/tippyjs-3.2.0/tippy.all.min.js -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/deprecated.html -------------------------------------------------------------------------------- /docs/reference/dot-tippy_this.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/dot-tippy_this.html -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/is_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/is_selector.html -------------------------------------------------------------------------------- /docs/reference/make_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/make_selector.html -------------------------------------------------------------------------------- /docs/reference/make_selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/make_selectors.html -------------------------------------------------------------------------------- /docs/reference/methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/methods.html -------------------------------------------------------------------------------- /docs/reference/random_id.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/random_id.html -------------------------------------------------------------------------------- /docs/reference/tippy-shiny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/tippy-shiny.html -------------------------------------------------------------------------------- /docs/reference/tippy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/tippy.html -------------------------------------------------------------------------------- /docs/reference/tippyDefault.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/tippyDefault.html -------------------------------------------------------------------------------- /docs/reference/tippyTheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/tippyTheme.html -------------------------------------------------------------------------------- /docs/reference/tippyThis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/tippyThis.html -------------------------------------------------------------------------------- /docs/reference/tippy_global_theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/tippy_global_theme.html -------------------------------------------------------------------------------- /docs/reference/tippy_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/tippy_plot.html -------------------------------------------------------------------------------- /docs/reference/useTippy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/useTippy.html -------------------------------------------------------------------------------- /docs/reference/use_tippy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/use_tippy.html -------------------------------------------------------------------------------- /docs/reference/use_tippy_funcs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/docs/reference/use_tippy_funcs.html -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/index.md -------------------------------------------------------------------------------- /inst/htmlwidgets/tippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/inst/htmlwidgets/tippy.js -------------------------------------------------------------------------------- /inst/packer/tippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/inst/packer/tippy.js -------------------------------------------------------------------------------- /man/deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/deprecated.Rd -------------------------------------------------------------------------------- /man/dot-tippy_this.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/dot-tippy_this.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/is_selector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/is_selector.Rd -------------------------------------------------------------------------------- /man/make_selector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/make_selector.Rd -------------------------------------------------------------------------------- /man/make_selectors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/make_selectors.Rd -------------------------------------------------------------------------------- /man/methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/methods.Rd -------------------------------------------------------------------------------- /man/random_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/random_id.Rd -------------------------------------------------------------------------------- /man/tippy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/tippy.Rd -------------------------------------------------------------------------------- /man/tippyDefault.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/tippyDefault.Rd -------------------------------------------------------------------------------- /man/tippyTheme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/tippyTheme.Rd -------------------------------------------------------------------------------- /man/tippyThis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/tippyThis.Rd -------------------------------------------------------------------------------- /man/tippy_global_theme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/tippy_global_theme.Rd -------------------------------------------------------------------------------- /man/tippy_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/tippy_plot.Rd -------------------------------------------------------------------------------- /man/useTippy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/man/useTippy.Rd -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/package.json -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /srcjs/config/entry_points.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/srcjs/config/entry_points.json -------------------------------------------------------------------------------- /srcjs/config/externals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/srcjs/config/externals.json -------------------------------------------------------------------------------- /srcjs/config/loaders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/srcjs/config/loaders.json -------------------------------------------------------------------------------- /srcjs/config/misc.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /srcjs/config/output_path.json: -------------------------------------------------------------------------------- 1 | "./inst/packer" 2 | -------------------------------------------------------------------------------- /srcjs/exts/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/srcjs/exts/bind.js -------------------------------------------------------------------------------- /srcjs/exts/plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/srcjs/exts/plot.js -------------------------------------------------------------------------------- /srcjs/exts/tippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/srcjs/exts/tippy.js -------------------------------------------------------------------------------- /srcjs/index.js: -------------------------------------------------------------------------------- 1 | import './exts/tippy.js'; 2 | -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnCoene/tippy/HEAD/webpack.prod.js --------------------------------------------------------------------------------