├── .gitignore ├── Cakefile ├── Guardfile ├── README.md ├── example ├── css │ ├── bootstrap.min.css │ ├── jquery-ui.css │ └── style.css ├── data │ ├── MNI152.json │ ├── MNI152.nii.gz │ ├── emotion_meta.json │ ├── emotion_meta.nii.gz │ ├── language_meta.json │ └── language_meta.nii.gz ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.html └── js │ ├── amplify.min.js │ ├── app.js │ ├── bootstrap.min.js │ ├── jquery-ui.min.js │ ├── jquery.min.js │ ├── panzoom.js │ ├── rainbow.js │ ├── sylvester.js │ ├── viewer.js │ └── xtk.js ├── lib └── viewer.js └── src ├── app.coffee ├── models.coffee └── views.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .DS_Store -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/Cakefile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/Guardfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/README.md -------------------------------------------------------------------------------- /example/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/css/bootstrap.min.css -------------------------------------------------------------------------------- /example/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/css/jquery-ui.css -------------------------------------------------------------------------------- /example/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/css/style.css -------------------------------------------------------------------------------- /example/data/MNI152.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/data/MNI152.json -------------------------------------------------------------------------------- /example/data/MNI152.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/data/MNI152.nii.gz -------------------------------------------------------------------------------- /example/data/emotion_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/data/emotion_meta.json -------------------------------------------------------------------------------- /example/data/emotion_meta.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/data/emotion_meta.nii.gz -------------------------------------------------------------------------------- /example/data/language_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/data/language_meta.json -------------------------------------------------------------------------------- /example/data/language_meta.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/data/language_meta.nii.gz -------------------------------------------------------------------------------- /example/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /example/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /example/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /example/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/index.html -------------------------------------------------------------------------------- /example/js/amplify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/amplify.min.js -------------------------------------------------------------------------------- /example/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/app.js -------------------------------------------------------------------------------- /example/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/bootstrap.min.js -------------------------------------------------------------------------------- /example/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/jquery-ui.min.js -------------------------------------------------------------------------------- /example/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/jquery.min.js -------------------------------------------------------------------------------- /example/js/panzoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/panzoom.js -------------------------------------------------------------------------------- /example/js/rainbow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/rainbow.js -------------------------------------------------------------------------------- /example/js/sylvester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/sylvester.js -------------------------------------------------------------------------------- /example/js/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/viewer.js -------------------------------------------------------------------------------- /example/js/xtk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/example/js/xtk.js -------------------------------------------------------------------------------- /lib/viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/lib/viewer.js -------------------------------------------------------------------------------- /src/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/src/app.coffee -------------------------------------------------------------------------------- /src/models.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/src/models.coffee -------------------------------------------------------------------------------- /src/views.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurosynth/nsviewer/HEAD/src/views.coffee --------------------------------------------------------------------------------