├── .gitignore ├── .htaccess ├── Gruntfile.js ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── Screenshots ├── desktop-artist.jpg ├── desktop-artists.jpg ├── desktop-dragging.jpg ├── desktop-featured.jpg ├── desktop-genre.jpg ├── desktop-playlist.jpg ├── desktop-queue.jpg ├── desktop-search.jpg └── overview.jpg ├── mopidy_spotmop ├── __init__.py ├── ext.conf ├── frontend.py ├── mem.py ├── pusher.py └── static │ ├── app-annotated.js │ ├── app.css │ ├── app.css.map │ ├── app.js │ ├── app.min.css │ ├── app.min.css.map │ ├── app.min.js │ ├── app.min.js.map │ ├── app │ ├── app.js │ ├── browse │ │ ├── album │ │ │ ├── controller.js │ │ │ └── template.html │ │ ├── artist │ │ │ ├── biography.template.html │ │ │ ├── controller.js │ │ │ ├── overview.template.html │ │ │ ├── related.template.html │ │ │ └── template.html │ │ ├── controller.js │ │ ├── featured │ │ │ ├── controller.js │ │ │ └── template.html │ │ ├── genre │ │ │ ├── category.template.html │ │ │ ├── controller.js │ │ │ └── template.html │ │ ├── new │ │ │ ├── controller.js │ │ │ └── template.html │ │ ├── playlist │ │ │ ├── controller.js │ │ │ └── template.html │ │ ├── template.html │ │ └── user │ │ │ ├── controller.js │ │ │ └── template.html │ ├── common │ │ ├── artistlist.template.html │ │ ├── contextmenu │ │ │ ├── directive.js │ │ │ └── template.html │ │ ├── directives.js │ │ ├── dropdown-field.template.html │ │ ├── genrelist.template.html │ │ ├── mainmenu.template.html │ │ ├── slider.template.html │ │ ├── thumbnail.template.html │ │ └── tracklist │ │ │ ├── localtrack.template.html │ │ │ ├── service.js │ │ │ ├── template.html │ │ │ ├── tltrack.template.html │ │ │ ├── track.directive.js │ │ │ ├── track.template.html │ │ │ └── tracklist.directive.js │ ├── discover │ │ ├── controller.js │ │ ├── recommendations.template.html │ │ ├── similar.template.html │ │ └── template.html │ ├── library │ │ ├── albums.template.html │ │ ├── artists.template.html │ │ ├── controller.js │ │ ├── files.template.html │ │ ├── local.template.html │ │ ├── playlists.template.html │ │ ├── template.html │ │ └── tracks.template.html │ ├── local │ │ ├── albums.html │ │ ├── artists.html │ │ ├── controller.js │ │ ├── directory.html │ │ ├── index.html │ │ └── template.html │ ├── player │ │ ├── controller.js │ │ ├── service.js │ │ └── template.html │ ├── queue │ │ ├── controller.js │ │ └── template.html │ ├── search │ │ ├── controller.js │ │ └── template.html │ ├── services │ │ ├── dialog │ │ │ ├── addbyuri.template.html │ │ │ ├── addtoplaylist.template.html │ │ │ ├── createplaylist.template.html │ │ │ ├── editplaylist.template.html │ │ │ ├── initialsetup.template.html │ │ │ ├── service.js │ │ │ ├── template.html │ │ │ └── volumecontrols.template.html │ │ ├── lastfm │ │ │ └── service.js │ │ ├── mopidy │ │ │ └── service.js │ │ ├── notify │ │ │ ├── service.js │ │ │ └── template.html │ │ ├── playlist-manager │ │ │ └── service.js │ │ ├── pusher │ │ │ └── service.js │ │ └── spotify │ │ │ ├── service.js │ │ │ └── spotify.js │ └── settings │ │ ├── controller.js │ │ ├── service.js │ │ ├── template.html │ │ └── testing.template.html │ ├── assets │ ├── backgrounds │ │ ├── afternoon.jpg │ │ ├── category-albums.jpg │ │ ├── category-artists.jpg │ │ ├── category-directory.jpg │ │ ├── commute.jpg │ │ ├── dinner.jpg │ │ ├── evening.jpg │ │ ├── late.jpg │ │ ├── midday.jpg │ │ └── morning.jpg │ ├── css │ │ ├── style.css │ │ └── style.min.css │ ├── favicon.ico │ ├── favicon.psd │ ├── fonts │ │ ├── Archivo-Narrow-700.eot │ │ ├── Archivo-Narrow-700.svg │ │ ├── Archivo-Narrow-700.ttf │ │ ├── Archivo-Narrow-700.woff │ │ ├── Archivo-Narrow-700.woff2 │ │ ├── Archivo-Narrow-regular.eot │ │ ├── Archivo-Narrow-regular.svg │ │ ├── Archivo-Narrow-regular.ttf │ │ ├── Archivo-Narrow-regular.woff │ │ ├── Archivo-Narrow-regular.woff2 │ │ ├── FontAwesome.otf │ │ ├── Roboto-regular.eot │ │ ├── Roboto-regular.svg │ │ ├── Roboto-regular.ttf │ │ ├── Roboto-regular.woff │ │ ├── Roboto-regular.woff2 │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── icons │ │ ├── cd.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── close-black.svg │ │ ├── close-white.svg │ │ ├── cog.svg │ │ ├── compass.svg │ │ ├── filter.svg │ │ ├── folder.svg │ │ ├── grid.svg │ │ ├── icons-single.ai │ │ ├── icons.ai │ │ ├── icons.svg │ │ ├── leaf.svg │ │ ├── list.svg │ │ ├── local.svg │ │ ├── mic.svg │ │ ├── music.svg │ │ ├── play.svg │ │ ├── playlist.svg │ │ ├── search.svg │ │ ├── sections.svg │ │ ├── soundcloud.svg │ │ ├── source-icons.ai │ │ ├── source-icons.svg │ │ ├── spotify.svg │ │ └── star.svg │ └── svg │ │ ├── blur.svg │ │ ├── local.svg │ │ ├── no-image.svg │ │ ├── soundcloud.svg │ │ ├── spinner-black.svg │ │ ├── spinner-white.svg │ │ ├── spinner.svg │ │ ├── spotify.svg │ │ └── white-diamond.svg │ ├── dev.html │ ├── index.html │ ├── scss │ ├── app.scss │ ├── components │ │ ├── _context-menu.scss │ │ ├── _dialog.scss │ │ ├── _loading-bar.scss │ │ ├── _player.scss │ │ ├── _slider.scss │ │ └── _tracklist.scss │ ├── global │ │ ├── _core.scss │ │ ├── _forms.scss │ │ ├── _icons.scss │ │ ├── _responsive.scss │ │ └── _touch-devices.scss │ └── vendor │ │ ├── _font-awesome.scss │ │ └── _fonts.scss │ ├── testing.html │ └── vendor │ ├── angular-google-analytics.min.js │ ├── angular-resource.min.js │ ├── angular-storage.min.js │ ├── angular-touch.js │ ├── angular-touch.min.js │ ├── angular-ui-router.min.js │ ├── angular.js │ ├── background-check.min.js │ ├── clipboard.min.js │ ├── jquery.event.drag.js │ ├── jquery.event.drop.js │ ├── jquery.min.js │ ├── loading-bar.js │ ├── mopidy.min.js │ └── ngclipboard.js ├── package.json ├── setup.cfg ├── setup.py ├── spotmop.php └── src ├── app ├── app.js ├── browse │ ├── album │ │ ├── controller.js │ │ └── template.html │ ├── artist │ │ ├── biography.template.html │ │ ├── controller.js │ │ ├── overview.template.html │ │ ├── related.template.html │ │ └── template.html │ ├── controller.js │ ├── featured │ │ ├── controller.js │ │ └── template.html │ ├── genre │ │ ├── category.template.html │ │ ├── controller.js │ │ └── template.html │ ├── new │ │ ├── controller.js │ │ └── template.html │ ├── playlist │ │ ├── controller.js │ │ └── template.html │ ├── template.html │ └── user │ │ ├── controller.js │ │ └── template.html ├── common │ ├── artistlist.template.html │ ├── contextmenu │ │ ├── directive.js │ │ └── template.html │ ├── directives.js │ ├── dropdown-field.template.html │ ├── genrelist.template.html │ ├── mainmenu.template.html │ ├── slider.template.html │ ├── thumbnail.template.html │ └── tracklist │ │ ├── template.html │ │ ├── track.directive.js │ │ ├── track.template.html │ │ └── tracklist.directive.js ├── discover │ ├── controller.js │ ├── recommendations.template.html │ ├── similar.template.html │ └── template.html ├── library │ ├── albums.template.html │ ├── artists.template.html │ ├── controller.js │ ├── playlists.template.html │ ├── template.html │ └── tracks.template.html ├── local │ ├── albums.html │ ├── artists.html │ ├── controller.js │ ├── directory.html │ ├── index.html │ └── template.html ├── player │ ├── controller.js │ ├── service.js │ └── template.html ├── queue │ ├── controller.js │ └── template.html ├── search │ ├── controller.js │ └── template.html ├── services │ ├── dialog │ │ ├── addbyuri.template.html │ │ ├── addtoplaylist.template.html │ │ ├── createplaylist.template.html │ │ ├── editplaylist.template.html │ │ ├── service.js │ │ ├── template.html │ │ └── volumecontrols.template.html │ ├── lastfm │ │ └── service.js │ ├── mopidy │ │ └── service.js │ ├── notify │ │ ├── service.js │ │ └── template.html │ ├── playlist-manager │ │ └── service.js │ ├── pusher │ │ └── service.js │ └── spotify │ │ └── service.js └── settings │ ├── controller.js │ ├── service.js │ ├── template.html │ └── testing.template.html ├── assets ├── backgrounds │ ├── afternoon.jpg │ ├── category-albums.jpg │ ├── category-artists.jpg │ ├── category-directory.jpg │ ├── commute.jpg │ ├── dinner.jpg │ ├── evening.jpg │ ├── late.jpg │ ├── midday.jpg │ └── morning.jpg ├── favicon.ico ├── favicon.psd ├── fonts │ ├── Archivo-Narrow-700.eot │ ├── Archivo-Narrow-700.svg │ ├── Archivo-Narrow-700.ttf │ ├── Archivo-Narrow-700.woff │ ├── Archivo-Narrow-700.woff2 │ ├── Archivo-Narrow-regular.eot │ ├── Archivo-Narrow-regular.svg │ ├── Archivo-Narrow-regular.ttf │ ├── Archivo-Narrow-regular.woff │ ├── Archivo-Narrow-regular.woff2 │ ├── FontAwesome.otf │ ├── Roboto-regular.eot │ ├── Roboto-regular.svg │ ├── Roboto-regular.ttf │ ├── Roboto-regular.woff │ ├── Roboto-regular.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── icons │ ├── cd.svg │ ├── chevron-left.svg │ ├── chevron-right.svg │ ├── close-black.svg │ ├── close-white.svg │ ├── cog.svg │ ├── compass.svg │ ├── filter.svg │ ├── folder.svg │ ├── grid.svg │ ├── icons-single.ai │ ├── icons.ai │ ├── leaf.svg │ ├── list.svg │ ├── local.svg │ ├── mic.svg │ ├── music.svg │ ├── play.svg │ ├── playlist.svg │ ├── search.svg │ ├── sections.svg │ ├── soundcloud.svg │ ├── spotify.svg │ └── star.svg └── svg │ ├── blur.svg │ ├── local.svg │ ├── no-image.svg │ ├── soundcloud.svg │ ├── spinner-black.svg │ ├── spinner-white.svg │ ├── spinner.svg │ ├── spotify.svg │ └── white-diamond.svg ├── dev.html ├── scss ├── app.scss ├── components │ ├── _context-menu.scss │ ├── _dialog.scss │ ├── _loading-bar.scss │ ├── _player.scss │ ├── _slider.scss │ └── _tracklist.scss ├── global │ ├── _core.scss │ ├── _forms.scss │ ├── _icons.scss │ ├── _responsive.scss │ └── _touch-devices.scss └── vendor │ ├── _font-awesome.scss │ └── _fonts.scss └── vendor ├── angular-google-analytics.min.js ├── angular-resource.min.js ├── angular-storage.min.js ├── angular-touch.js ├── angular-touch.min.js ├── angular-ui-router.min.js ├── angular.js ├── background-check.min.js ├── clipboard.min.js ├── jquery.event.drag.js ├── jquery.event.drop.js ├── jquery.min.js ├── loading-bar.js ├── mopidy.min.js └── ngclipboard.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/.htaccess -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/desktop-artist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/desktop-artist.jpg -------------------------------------------------------------------------------- /Screenshots/desktop-artists.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/desktop-artists.jpg -------------------------------------------------------------------------------- /Screenshots/desktop-dragging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/desktop-dragging.jpg -------------------------------------------------------------------------------- /Screenshots/desktop-featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/desktop-featured.jpg -------------------------------------------------------------------------------- /Screenshots/desktop-genre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/desktop-genre.jpg -------------------------------------------------------------------------------- /Screenshots/desktop-playlist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/desktop-playlist.jpg -------------------------------------------------------------------------------- /Screenshots/desktop-queue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/desktop-queue.jpg -------------------------------------------------------------------------------- /Screenshots/desktop-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/desktop-search.jpg -------------------------------------------------------------------------------- /Screenshots/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/Screenshots/overview.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/__init__.py -------------------------------------------------------------------------------- /mopidy_spotmop/ext.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/ext.conf -------------------------------------------------------------------------------- /mopidy_spotmop/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/frontend.py -------------------------------------------------------------------------------- /mopidy_spotmop/mem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/mem.py -------------------------------------------------------------------------------- /mopidy_spotmop/pusher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/pusher.py -------------------------------------------------------------------------------- /mopidy_spotmop/static/app-annotated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app-annotated.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app.css -------------------------------------------------------------------------------- /mopidy_spotmop/static/app.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app.css.map -------------------------------------------------------------------------------- /mopidy_spotmop/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app.min.css -------------------------------------------------------------------------------- /mopidy_spotmop/static/app.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app.min.css.map -------------------------------------------------------------------------------- /mopidy_spotmop/static/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app.min.js.map -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/app.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/album/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/album/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/album/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/album/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/artist/biography.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/artist/biography.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/artist/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/artist/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/artist/overview.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/artist/overview.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/artist/related.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/artist/related.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/artist/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/artist/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/featured/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/featured/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/featured/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/featured/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/genre/category.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/genre/category.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/genre/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/genre/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/genre/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/genre/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/new/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/new/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/new/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/new/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/playlist/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/playlist/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/playlist/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/playlist/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/template.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/user/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/user/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/browse/user/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/browse/user/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/artistlist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/artistlist.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/contextmenu/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/contextmenu/directive.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/contextmenu/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/contextmenu/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/directives.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/dropdown-field.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/dropdown-field.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/genrelist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/genrelist.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/mainmenu.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/mainmenu.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/slider.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/slider.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/thumbnail.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/thumbnail.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/tracklist/localtrack.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/tracklist/localtrack.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/tracklist/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/tracklist/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/tracklist/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/tracklist/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/tracklist/tltrack.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/tracklist/tltrack.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/tracklist/track.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/tracklist/track.directive.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/tracklist/track.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/tracklist/track.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/common/tracklist/tracklist.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/common/tracklist/tracklist.directive.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/discover/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/discover/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/discover/recommendations.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/discover/recommendations.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/discover/similar.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/discover/similar.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/discover/template.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /mopidy_spotmop/static/app/library/albums.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/library/albums.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/library/artists.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/library/artists.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/library/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/library/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/library/files.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/library/files.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/library/local.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/library/local.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/library/playlists.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/library/playlists.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/library/template.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /mopidy_spotmop/static/app/library/tracks.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/library/tracks.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/local/albums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/local/albums.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/local/artists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/local/artists.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/local/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/local/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/local/directory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/local/directory.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/local/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/local/index.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/local/template.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /mopidy_spotmop/static/app/player/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/player/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/player/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/player/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/player/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/player/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/queue/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/queue/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/queue/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/queue/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/search/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/search/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/search/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/search/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/dialog/addbyuri.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/dialog/addbyuri.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/dialog/addtoplaylist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/dialog/addtoplaylist.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/dialog/createplaylist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/dialog/createplaylist.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/dialog/editplaylist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/dialog/editplaylist.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/dialog/initialsetup.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/dialog/initialsetup.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/dialog/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/dialog/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/dialog/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/dialog/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/dialog/volumecontrols.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/dialog/volumecontrols.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/lastfm/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/lastfm/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/mopidy/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/mopidy/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/notify/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/notify/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/notify/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/notify/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/playlist-manager/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/playlist-manager/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/pusher/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/pusher/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/spotify/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/spotify/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/services/spotify/spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/services/spotify/spotify.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/settings/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/settings/controller.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/settings/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/settings/service.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/settings/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/settings/template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/app/settings/testing.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/app/settings/testing.template.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/afternoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/afternoon.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/category-albums.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/category-albums.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/category-artists.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/category-artists.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/category-directory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/category-directory.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/commute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/commute.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/dinner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/dinner.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/evening.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/evening.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/late.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/late.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/midday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/midday.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/backgrounds/morning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/backgrounds/morning.jpg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/css/style.css -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/css/style.min.css -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/favicon.ico -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/favicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/favicon.psd -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.eot -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.ttf -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.woff -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-700.woff2 -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.eot -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.ttf -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.woff -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Archivo-Narrow-regular.woff2 -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Roboto-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Roboto-regular.eot -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Roboto-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Roboto-regular.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Roboto-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Roboto-regular.ttf -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Roboto-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Roboto-regular.woff -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/Roboto-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/Roboto-regular.woff2 -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/cd.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/chevron-left.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/chevron-right.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/close-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/close-black.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/close-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/close-white.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/cog.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/compass.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/filter.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/folder.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/grid.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/icons-single.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/icons-single.ai -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/icons.ai -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/icons.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/leaf.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/list.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/local.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/mic.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/music.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/play.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/playlist.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/search.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/sections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/sections.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/soundcloud.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/source-icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/source-icons.ai -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/source-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/source-icons.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/spotify.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/icons/star.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/blur.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/local.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/no-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/no-image.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/soundcloud.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/spinner-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/spinner-black.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/spinner-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/spinner-white.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/spinner.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/spotify.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/assets/svg/white-diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/assets/svg/white-diamond.svg -------------------------------------------------------------------------------- /mopidy_spotmop/static/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/dev.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/index.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/app.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/components/_context-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/components/_context-menu.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/components/_dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/components/_dialog.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/components/_loading-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/components/_loading-bar.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/components/_player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/components/_player.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/components/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/components/_slider.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/components/_tracklist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/components/_tracklist.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/global/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/global/_core.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/global/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/global/_forms.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/global/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/global/_icons.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/global/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/global/_responsive.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/global/_touch-devices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/global/_touch-devices.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/vendor/_font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/vendor/_font-awesome.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/scss/vendor/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/scss/vendor/_fonts.scss -------------------------------------------------------------------------------- /mopidy_spotmop/static/testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/testing.html -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/angular-google-analytics.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/angular-google-analytics.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/angular-resource.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/angular-storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/angular-storage.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/angular-touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/angular-touch.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/angular-touch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/angular-touch.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/angular-ui-router.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/angular-ui-router.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/angular.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/background-check.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/background-check.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/clipboard.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/jquery.event.drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/jquery.event.drag.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/jquery.event.drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/jquery.event.drop.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/jquery.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/loading-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/loading-bar.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/mopidy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/mopidy.min.js -------------------------------------------------------------------------------- /mopidy_spotmop/static/vendor/ngclipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/mopidy_spotmop/static/vendor/ngclipboard.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/package.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/setup.py -------------------------------------------------------------------------------- /spotmop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/spotmop.php -------------------------------------------------------------------------------- /src/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/app.js -------------------------------------------------------------------------------- /src/app/browse/album/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/album/controller.js -------------------------------------------------------------------------------- /src/app/browse/album/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/album/template.html -------------------------------------------------------------------------------- /src/app/browse/artist/biography.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/artist/biography.template.html -------------------------------------------------------------------------------- /src/app/browse/artist/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/artist/controller.js -------------------------------------------------------------------------------- /src/app/browse/artist/overview.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/artist/overview.template.html -------------------------------------------------------------------------------- /src/app/browse/artist/related.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/artist/related.template.html -------------------------------------------------------------------------------- /src/app/browse/artist/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/artist/template.html -------------------------------------------------------------------------------- /src/app/browse/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/controller.js -------------------------------------------------------------------------------- /src/app/browse/featured/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/featured/controller.js -------------------------------------------------------------------------------- /src/app/browse/featured/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/featured/template.html -------------------------------------------------------------------------------- /src/app/browse/genre/category.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/genre/category.template.html -------------------------------------------------------------------------------- /src/app/browse/genre/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/genre/controller.js -------------------------------------------------------------------------------- /src/app/browse/genre/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/genre/template.html -------------------------------------------------------------------------------- /src/app/browse/new/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/new/controller.js -------------------------------------------------------------------------------- /src/app/browse/new/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/new/template.html -------------------------------------------------------------------------------- /src/app/browse/playlist/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/playlist/controller.js -------------------------------------------------------------------------------- /src/app/browse/playlist/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/playlist/template.html -------------------------------------------------------------------------------- /src/app/browse/template.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /src/app/browse/user/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/user/controller.js -------------------------------------------------------------------------------- /src/app/browse/user/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/browse/user/template.html -------------------------------------------------------------------------------- /src/app/common/artistlist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/artistlist.template.html -------------------------------------------------------------------------------- /src/app/common/contextmenu/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/contextmenu/directive.js -------------------------------------------------------------------------------- /src/app/common/contextmenu/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/contextmenu/template.html -------------------------------------------------------------------------------- /src/app/common/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/directives.js -------------------------------------------------------------------------------- /src/app/common/dropdown-field.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/dropdown-field.template.html -------------------------------------------------------------------------------- /src/app/common/genrelist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/genrelist.template.html -------------------------------------------------------------------------------- /src/app/common/mainmenu.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/mainmenu.template.html -------------------------------------------------------------------------------- /src/app/common/slider.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/slider.template.html -------------------------------------------------------------------------------- /src/app/common/thumbnail.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/thumbnail.template.html -------------------------------------------------------------------------------- /src/app/common/tracklist/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/tracklist/template.html -------------------------------------------------------------------------------- /src/app/common/tracklist/track.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/tracklist/track.directive.js -------------------------------------------------------------------------------- /src/app/common/tracklist/track.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/tracklist/track.template.html -------------------------------------------------------------------------------- /src/app/common/tracklist/tracklist.directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/common/tracklist/tracklist.directive.js -------------------------------------------------------------------------------- /src/app/discover/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/discover/controller.js -------------------------------------------------------------------------------- /src/app/discover/recommendations.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/discover/recommendations.template.html -------------------------------------------------------------------------------- /src/app/discover/similar.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/discover/similar.template.html -------------------------------------------------------------------------------- /src/app/discover/template.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /src/app/library/albums.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/library/albums.template.html -------------------------------------------------------------------------------- /src/app/library/artists.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/library/artists.template.html -------------------------------------------------------------------------------- /src/app/library/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/library/controller.js -------------------------------------------------------------------------------- /src/app/library/playlists.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/library/playlists.template.html -------------------------------------------------------------------------------- /src/app/library/template.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /src/app/library/tracks.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/library/tracks.template.html -------------------------------------------------------------------------------- /src/app/local/albums.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/local/albums.html -------------------------------------------------------------------------------- /src/app/local/artists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/local/artists.html -------------------------------------------------------------------------------- /src/app/local/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/local/controller.js -------------------------------------------------------------------------------- /src/app/local/directory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/local/directory.html -------------------------------------------------------------------------------- /src/app/local/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/local/index.html -------------------------------------------------------------------------------- /src/app/local/template.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /src/app/player/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/player/controller.js -------------------------------------------------------------------------------- /src/app/player/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/player/service.js -------------------------------------------------------------------------------- /src/app/player/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/player/template.html -------------------------------------------------------------------------------- /src/app/queue/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/queue/controller.js -------------------------------------------------------------------------------- /src/app/queue/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/queue/template.html -------------------------------------------------------------------------------- /src/app/search/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/search/controller.js -------------------------------------------------------------------------------- /src/app/search/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/search/template.html -------------------------------------------------------------------------------- /src/app/services/dialog/addbyuri.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/dialog/addbyuri.template.html -------------------------------------------------------------------------------- /src/app/services/dialog/addtoplaylist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/dialog/addtoplaylist.template.html -------------------------------------------------------------------------------- /src/app/services/dialog/createplaylist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/dialog/createplaylist.template.html -------------------------------------------------------------------------------- /src/app/services/dialog/editplaylist.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/dialog/editplaylist.template.html -------------------------------------------------------------------------------- /src/app/services/dialog/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/dialog/service.js -------------------------------------------------------------------------------- /src/app/services/dialog/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/dialog/template.html -------------------------------------------------------------------------------- /src/app/services/dialog/volumecontrols.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/dialog/volumecontrols.template.html -------------------------------------------------------------------------------- /src/app/services/lastfm/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/lastfm/service.js -------------------------------------------------------------------------------- /src/app/services/mopidy/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/mopidy/service.js -------------------------------------------------------------------------------- /src/app/services/notify/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/notify/service.js -------------------------------------------------------------------------------- /src/app/services/notify/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/notify/template.html -------------------------------------------------------------------------------- /src/app/services/playlist-manager/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/playlist-manager/service.js -------------------------------------------------------------------------------- /src/app/services/pusher/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/pusher/service.js -------------------------------------------------------------------------------- /src/app/services/spotify/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/services/spotify/service.js -------------------------------------------------------------------------------- /src/app/settings/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/settings/controller.js -------------------------------------------------------------------------------- /src/app/settings/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/settings/service.js -------------------------------------------------------------------------------- /src/app/settings/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/settings/template.html -------------------------------------------------------------------------------- /src/app/settings/testing.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/app/settings/testing.template.html -------------------------------------------------------------------------------- /src/assets/backgrounds/afternoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/afternoon.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/category-albums.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/category-albums.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/category-artists.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/category-artists.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/category-directory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/category-directory.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/commute.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/commute.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/dinner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/dinner.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/evening.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/evening.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/late.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/late.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/midday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/midday.jpg -------------------------------------------------------------------------------- /src/assets/backgrounds/morning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/backgrounds/morning.jpg -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/favicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/favicon.psd -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-700.eot -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-700.svg -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-700.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-700.woff -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-700.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-regular.svg -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/Archivo-Narrow-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Archivo-Narrow-regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Roboto-regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Roboto-regular.svg -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Roboto-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Roboto-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/Roboto-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/Roboto-regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/assets/icons/cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/cd.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/chevron-left.svg -------------------------------------------------------------------------------- /src/assets/icons/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/chevron-right.svg -------------------------------------------------------------------------------- /src/assets/icons/close-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/close-black.svg -------------------------------------------------------------------------------- /src/assets/icons/close-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/close-white.svg -------------------------------------------------------------------------------- /src/assets/icons/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/cog.svg -------------------------------------------------------------------------------- /src/assets/icons/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/compass.svg -------------------------------------------------------------------------------- /src/assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/filter.svg -------------------------------------------------------------------------------- /src/assets/icons/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/folder.svg -------------------------------------------------------------------------------- /src/assets/icons/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/grid.svg -------------------------------------------------------------------------------- /src/assets/icons/icons-single.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/icons-single.ai -------------------------------------------------------------------------------- /src/assets/icons/icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/icons.ai -------------------------------------------------------------------------------- /src/assets/icons/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/leaf.svg -------------------------------------------------------------------------------- /src/assets/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/list.svg -------------------------------------------------------------------------------- /src/assets/icons/local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/local.svg -------------------------------------------------------------------------------- /src/assets/icons/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/mic.svg -------------------------------------------------------------------------------- /src/assets/icons/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/music.svg -------------------------------------------------------------------------------- /src/assets/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/play.svg -------------------------------------------------------------------------------- /src/assets/icons/playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/playlist.svg -------------------------------------------------------------------------------- /src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/search.svg -------------------------------------------------------------------------------- /src/assets/icons/sections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/sections.svg -------------------------------------------------------------------------------- /src/assets/icons/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/soundcloud.svg -------------------------------------------------------------------------------- /src/assets/icons/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/spotify.svg -------------------------------------------------------------------------------- /src/assets/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/icons/star.svg -------------------------------------------------------------------------------- /src/assets/svg/blur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/blur.svg -------------------------------------------------------------------------------- /src/assets/svg/local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/local.svg -------------------------------------------------------------------------------- /src/assets/svg/no-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/no-image.svg -------------------------------------------------------------------------------- /src/assets/svg/soundcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/soundcloud.svg -------------------------------------------------------------------------------- /src/assets/svg/spinner-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/spinner-black.svg -------------------------------------------------------------------------------- /src/assets/svg/spinner-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/spinner-white.svg -------------------------------------------------------------------------------- /src/assets/svg/spinner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/spinner.svg -------------------------------------------------------------------------------- /src/assets/svg/spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/spotify.svg -------------------------------------------------------------------------------- /src/assets/svg/white-diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/assets/svg/white-diamond.svg -------------------------------------------------------------------------------- /src/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/dev.html -------------------------------------------------------------------------------- /src/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/app.scss -------------------------------------------------------------------------------- /src/scss/components/_context-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/components/_context-menu.scss -------------------------------------------------------------------------------- /src/scss/components/_dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/components/_dialog.scss -------------------------------------------------------------------------------- /src/scss/components/_loading-bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/components/_loading-bar.scss -------------------------------------------------------------------------------- /src/scss/components/_player.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/components/_player.scss -------------------------------------------------------------------------------- /src/scss/components/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/components/_slider.scss -------------------------------------------------------------------------------- /src/scss/components/_tracklist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/components/_tracklist.scss -------------------------------------------------------------------------------- /src/scss/global/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/global/_core.scss -------------------------------------------------------------------------------- /src/scss/global/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/global/_forms.scss -------------------------------------------------------------------------------- /src/scss/global/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/global/_icons.scss -------------------------------------------------------------------------------- /src/scss/global/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/global/_responsive.scss -------------------------------------------------------------------------------- /src/scss/global/_touch-devices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/global/_touch-devices.scss -------------------------------------------------------------------------------- /src/scss/vendor/_font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/vendor/_font-awesome.scss -------------------------------------------------------------------------------- /src/scss/vendor/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/scss/vendor/_fonts.scss -------------------------------------------------------------------------------- /src/vendor/angular-google-analytics.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/angular-google-analytics.min.js -------------------------------------------------------------------------------- /src/vendor/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/angular-resource.min.js -------------------------------------------------------------------------------- /src/vendor/angular-storage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/angular-storage.min.js -------------------------------------------------------------------------------- /src/vendor/angular-touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/angular-touch.js -------------------------------------------------------------------------------- /src/vendor/angular-touch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/angular-touch.min.js -------------------------------------------------------------------------------- /src/vendor/angular-ui-router.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/angular-ui-router.min.js -------------------------------------------------------------------------------- /src/vendor/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/angular.js -------------------------------------------------------------------------------- /src/vendor/background-check.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/background-check.min.js -------------------------------------------------------------------------------- /src/vendor/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/clipboard.min.js -------------------------------------------------------------------------------- /src/vendor/jquery.event.drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/jquery.event.drag.js -------------------------------------------------------------------------------- /src/vendor/jquery.event.drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/jquery.event.drop.js -------------------------------------------------------------------------------- /src/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/jquery.min.js -------------------------------------------------------------------------------- /src/vendor/loading-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/loading-bar.js -------------------------------------------------------------------------------- /src/vendor/mopidy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/mopidy.min.js -------------------------------------------------------------------------------- /src/vendor/ngclipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaedb/spotmop/HEAD/src/vendor/ngclipboard.js --------------------------------------------------------------------------------