├── .bowerrc ├── .codeclimate.yml ├── .csscomb.json ├── .csslintrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .jshintignore ├── .jshintrc ├── App ├── fonts │ ├── SourceSansPro-Regular.ttf │ ├── SourceSansPro-Semibold.ttf │ ├── flat-ui-icons-regular.eot │ ├── flat-ui-icons-regular.svg │ ├── flat-ui-icons-regular.ttf │ ├── flat-ui-icons-regular.woff │ ├── lato │ │ ├── lato-black.eot │ │ ├── lato-black.svg │ │ ├── lato-black.ttf │ │ ├── lato-black.woff │ │ ├── lato-bold.eot │ │ ├── lato-bold.svg │ │ ├── lato-bold.ttf │ │ ├── lato-bold.woff │ │ ├── lato-bolditalic.eot │ │ ├── lato-bolditalic.svg │ │ ├── lato-bolditalic.ttf │ │ ├── lato-bolditalic.woff │ │ ├── lato-italic.eot │ │ ├── lato-italic.svg │ │ ├── lato-italic.ttf │ │ ├── lato-italic.woff │ │ ├── lato-light.eot │ │ ├── lato-light.svg │ │ ├── lato-light.ttf │ │ ├── lato-light.woff │ │ ├── lato-regular.eot │ │ ├── lato-regular.svg │ │ ├── lato-regular.ttf │ │ └── lato-regular.woff │ └── pinbored │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── OpenSans-SemiboldItalic.ttf ├── images │ ├── demo │ │ ├── browser-2x.png │ │ ├── browser-author.jpg │ │ ├── browser-pic-1.jpg │ │ ├── browser-pic-2.jpg │ │ ├── browser-pic-3.jpg │ │ ├── browser-pic-4.jpg │ │ ├── browser-pic-5.jpg │ │ ├── browser-pic-6.jpg │ │ ├── browser.png │ │ ├── html-icon.png │ │ ├── logo-mask-2x.png │ │ ├── logo-mask.png │ │ └── video.jpg │ ├── footer │ │ └── logo.png │ ├── icons │ │ ├── png │ │ │ ├── Book.png │ │ │ ├── Calendar.png │ │ │ ├── Chat.png │ │ │ ├── Clipboard.png │ │ │ ├── Compas.png │ │ │ ├── Gift-Box.png │ │ │ ├── Infinity-Loop.png │ │ │ ├── Mail.png │ │ │ ├── Map.png │ │ │ ├── Pensils.png │ │ │ ├── Pocket.png │ │ │ ├── Retina-Ready.png │ │ │ ├── Toilet-Paper.png │ │ │ └── Watches.png │ │ └── svg │ │ │ ├── book.svg │ │ │ ├── calendar.svg │ │ │ ├── chat.svg │ │ │ ├── clipboard.svg │ │ │ ├── clocks.svg │ │ │ ├── compas.svg │ │ │ ├── gift-box.svg │ │ │ ├── loop.svg │ │ │ ├── mail.svg │ │ │ ├── map.svg │ │ │ ├── paper-bag.svg │ │ │ ├── pencils.svg │ │ │ ├── retina.svg │ │ │ └── toilet-paper.svg │ ├── login │ │ ├── icon.png │ │ ├── imac-2x.png │ │ └── imac.png │ ├── pinbored │ │ ├── icons │ │ │ ├── pinbored-icon-128.png │ │ │ ├── pinbored-icon-144.png │ │ │ ├── pinbored-icon-32.png │ │ │ └── pinbored-icon-48.png │ │ └── logo │ │ │ ├── pinbored-icon-black.png │ │ │ ├── pinbored-icon.png │ │ │ ├── pinbored-logo-transparent-text.png │ │ │ ├── pinbored-logo-transparent.png │ │ │ └── pinbored.psd │ ├── switch │ │ ├── mask-square.png │ │ └── mask.png │ ├── tile │ │ ├── ribbon-2x.png │ │ └── ribbon.png │ ├── todo │ │ ├── done-2x.png │ │ ├── done.png │ │ ├── search-2x.png │ │ ├── search.png │ │ ├── todo-2x.png │ │ └── todo.png │ └── video │ │ ├── fullscreen-2x.png │ │ ├── fullscreen.png │ │ ├── pause-2x.png │ │ ├── pause.png │ │ ├── play-2x.png │ │ ├── play.png │ │ ├── poster.jpg │ │ ├── volume-full-2x.png │ │ ├── volume-full.png │ │ ├── volume-off-2x.png │ │ └── volume-off.png ├── index.html ├── index.template.html ├── package.json ├── scripts │ ├── app.js │ ├── config │ │ └── config-node-nwjs.js │ ├── constants │ │ ├── config.js │ │ └── events.js │ ├── controllers │ │ ├── about.js │ │ ├── appstatus.js │ │ ├── behaviours │ │ │ ├── baseview.js │ │ │ └── searchableview.js │ │ ├── bookmarkitem.js │ │ ├── login.js │ │ ├── mainnav.js │ │ ├── overview.js │ │ ├── settings.js │ │ ├── tagitem.js │ │ ├── tags.js │ │ └── tools.js │ ├── directives │ │ ├── btnloading.js │ │ ├── ngenter.js │ │ └── stopevent.js │ ├── filters │ │ ├── bookmarkfulltextfilter.js │ │ ├── bookmarktagsfilter.js │ │ ├── highlightfilter.js │ │ ├── offsetfilter.js │ │ ├── tagfulltextfilter.js │ │ └── wordcutfilter.js │ ├── services │ │ ├── appconfigservice.js │ │ ├── appstatusservice.js │ │ ├── bookmarkservice.js │ │ ├── modalservice.js │ │ ├── pinboardservice.js │ │ ├── tagservice.js │ │ ├── usersessionservice.js │ │ └── utilservice.js │ └── tests │ │ ├── bookmarkitem_TEST.js │ │ ├── login_TEST.js │ │ ├── pinboardservice_TEST.js │ │ ├── usersessionservice_TEST.js │ │ └── utilservice_TEST.js ├── styles │ ├── app-behaviour.css │ ├── app-styling.css │ ├── app-viewcontainer.css │ ├── override-autocomplete.css │ ├── override-bootstrap.css │ ├── override-browser.css │ ├── override-flatui-pagination.css │ ├── override-flatui.css │ ├── override-gridster.css │ ├── override-ng-tags-input.css │ ├── override-noresponsive.css │ ├── override-splashmodal.old │ ├── view-about.css │ ├── view-bookmarkitem.css │ ├── view-common.css │ ├── view-login.css │ ├── view-mainnav.css │ ├── view-modal.css │ ├── view-overview.css │ ├── view-settings.css │ ├── view-tags.css │ └── view-tools.css ├── templates │ └── modal-about-template.html ├── uib │ └── template │ │ ├── accordion │ │ ├── accordion-group.html │ │ └── accordion.html │ │ ├── alert │ │ └── alert.html │ │ ├── carousel │ │ ├── carousel.html │ │ └── slide.html │ │ ├── datepicker │ │ ├── datepicker.html │ │ ├── day.html │ │ ├── month.html │ │ ├── popup.html │ │ └── year.html │ │ ├── modal │ │ ├── backdrop.html │ │ └── window.html │ │ ├── pager │ │ └── pager.html │ │ ├── pagination │ │ └── pagination.html │ │ ├── popover │ │ ├── popover-html.html │ │ ├── popover-template.html │ │ └── popover.html │ │ ├── progressbar │ │ ├── bar.html │ │ ├── progress.html │ │ └── progressbar.html │ │ ├── rating │ │ └── rating.html │ │ ├── tabs │ │ ├── tab.html │ │ └── tabset.html │ │ ├── timepicker │ │ └── timepicker.html │ │ ├── tooltip │ │ ├── tooltip-html-popup.html │ │ ├── tooltip-popup.html │ │ └── tooltip-template-popup.html │ │ └── typeahead │ │ ├── typeahead-match.html │ │ └── typeahead-popup.html └── views │ ├── about.html │ ├── login.html │ ├── overview.html │ ├── partials │ ├── components │ │ └── taginput.html │ ├── items │ │ ├── BookmarkItem.html │ │ └── tagitem.html │ ├── mainnav.html │ └── search │ │ ├── searchbar-buttons.html │ │ ├── searchbar-extra-bookmarks.html │ │ ├── searchbar-extra-tags.html │ │ ├── searchbar-fulltext.html │ │ ├── searchbar-paging.html │ │ └── searchbar-tags.html │ ├── settings.html │ ├── tags.html │ └── tools.html ├── CONTRIBUTE.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── Resources ├── pinbored-credits.html ├── pinbored-icon.icns └── pinbored-icon.png ├── bower.json ├── karma.conf.js ├── package.json └── sources ├── 451574509.jpg ├── bookmark-icon-1-614x460.png ├── bookmark-icon-3.png ├── pinbored-icon.psd ├── pinbored-logo-github.png ├── pinbored-logo-github.psd └── pinbored-logo.psd /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "App/bower_components" 3 | } -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/.csscomb.json -------------------------------------------------------------------------------- /.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/.csslintrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | /App/scripts/tests/**/*.js -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/.jshintrc -------------------------------------------------------------------------------- /App/fonts/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /App/fonts/SourceSansPro-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/SourceSansPro-Semibold.ttf -------------------------------------------------------------------------------- /App/fonts/flat-ui-icons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/flat-ui-icons-regular.eot -------------------------------------------------------------------------------- /App/fonts/flat-ui-icons-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/flat-ui-icons-regular.svg -------------------------------------------------------------------------------- /App/fonts/flat-ui-icons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/flat-ui-icons-regular.ttf -------------------------------------------------------------------------------- /App/fonts/flat-ui-icons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/flat-ui-icons-regular.woff -------------------------------------------------------------------------------- /App/fonts/lato/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-black.eot -------------------------------------------------------------------------------- /App/fonts/lato/lato-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-black.svg -------------------------------------------------------------------------------- /App/fonts/lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-black.ttf -------------------------------------------------------------------------------- /App/fonts/lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-black.woff -------------------------------------------------------------------------------- /App/fonts/lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-bold.eot -------------------------------------------------------------------------------- /App/fonts/lato/lato-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-bold.svg -------------------------------------------------------------------------------- /App/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /App/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /App/fonts/lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /App/fonts/lato/lato-bolditalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-bolditalic.svg -------------------------------------------------------------------------------- /App/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /App/fonts/lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /App/fonts/lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-italic.eot -------------------------------------------------------------------------------- /App/fonts/lato/lato-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-italic.svg -------------------------------------------------------------------------------- /App/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /App/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /App/fonts/lato/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-light.eot -------------------------------------------------------------------------------- /App/fonts/lato/lato-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-light.svg -------------------------------------------------------------------------------- /App/fonts/lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-light.ttf -------------------------------------------------------------------------------- /App/fonts/lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-light.woff -------------------------------------------------------------------------------- /App/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /App/fonts/lato/lato-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-regular.svg -------------------------------------------------------------------------------- /App/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /App/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-Light.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /App/fonts/pinbored/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/fonts/pinbored/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /App/images/demo/browser-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser-2x.png -------------------------------------------------------------------------------- /App/images/demo/browser-author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser-author.jpg -------------------------------------------------------------------------------- /App/images/demo/browser-pic-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser-pic-1.jpg -------------------------------------------------------------------------------- /App/images/demo/browser-pic-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser-pic-2.jpg -------------------------------------------------------------------------------- /App/images/demo/browser-pic-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser-pic-3.jpg -------------------------------------------------------------------------------- /App/images/demo/browser-pic-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser-pic-4.jpg -------------------------------------------------------------------------------- /App/images/demo/browser-pic-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser-pic-5.jpg -------------------------------------------------------------------------------- /App/images/demo/browser-pic-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser-pic-6.jpg -------------------------------------------------------------------------------- /App/images/demo/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/browser.png -------------------------------------------------------------------------------- /App/images/demo/html-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/html-icon.png -------------------------------------------------------------------------------- /App/images/demo/logo-mask-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/logo-mask-2x.png -------------------------------------------------------------------------------- /App/images/demo/logo-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/logo-mask.png -------------------------------------------------------------------------------- /App/images/demo/video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/demo/video.jpg -------------------------------------------------------------------------------- /App/images/footer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/footer/logo.png -------------------------------------------------------------------------------- /App/images/icons/png/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Book.png -------------------------------------------------------------------------------- /App/images/icons/png/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Calendar.png -------------------------------------------------------------------------------- /App/images/icons/png/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Chat.png -------------------------------------------------------------------------------- /App/images/icons/png/Clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Clipboard.png -------------------------------------------------------------------------------- /App/images/icons/png/Compas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Compas.png -------------------------------------------------------------------------------- /App/images/icons/png/Gift-Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Gift-Box.png -------------------------------------------------------------------------------- /App/images/icons/png/Infinity-Loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Infinity-Loop.png -------------------------------------------------------------------------------- /App/images/icons/png/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Mail.png -------------------------------------------------------------------------------- /App/images/icons/png/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Map.png -------------------------------------------------------------------------------- /App/images/icons/png/Pensils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Pensils.png -------------------------------------------------------------------------------- /App/images/icons/png/Pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Pocket.png -------------------------------------------------------------------------------- /App/images/icons/png/Retina-Ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Retina-Ready.png -------------------------------------------------------------------------------- /App/images/icons/png/Toilet-Paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Toilet-Paper.png -------------------------------------------------------------------------------- /App/images/icons/png/Watches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/png/Watches.png -------------------------------------------------------------------------------- /App/images/icons/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/book.svg -------------------------------------------------------------------------------- /App/images/icons/svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/calendar.svg -------------------------------------------------------------------------------- /App/images/icons/svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/chat.svg -------------------------------------------------------------------------------- /App/images/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /App/images/icons/svg/clocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/clocks.svg -------------------------------------------------------------------------------- /App/images/icons/svg/compas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/compas.svg -------------------------------------------------------------------------------- /App/images/icons/svg/gift-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/gift-box.svg -------------------------------------------------------------------------------- /App/images/icons/svg/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/loop.svg -------------------------------------------------------------------------------- /App/images/icons/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/mail.svg -------------------------------------------------------------------------------- /App/images/icons/svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/map.svg -------------------------------------------------------------------------------- /App/images/icons/svg/paper-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/paper-bag.svg -------------------------------------------------------------------------------- /App/images/icons/svg/pencils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/pencils.svg -------------------------------------------------------------------------------- /App/images/icons/svg/retina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/retina.svg -------------------------------------------------------------------------------- /App/images/icons/svg/toilet-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/icons/svg/toilet-paper.svg -------------------------------------------------------------------------------- /App/images/login/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/login/icon.png -------------------------------------------------------------------------------- /App/images/login/imac-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/login/imac-2x.png -------------------------------------------------------------------------------- /App/images/login/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/login/imac.png -------------------------------------------------------------------------------- /App/images/pinbored/icons/pinbored-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/icons/pinbored-icon-128.png -------------------------------------------------------------------------------- /App/images/pinbored/icons/pinbored-icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/icons/pinbored-icon-144.png -------------------------------------------------------------------------------- /App/images/pinbored/icons/pinbored-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/icons/pinbored-icon-32.png -------------------------------------------------------------------------------- /App/images/pinbored/icons/pinbored-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/icons/pinbored-icon-48.png -------------------------------------------------------------------------------- /App/images/pinbored/logo/pinbored-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/logo/pinbored-icon-black.png -------------------------------------------------------------------------------- /App/images/pinbored/logo/pinbored-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/logo/pinbored-icon.png -------------------------------------------------------------------------------- /App/images/pinbored/logo/pinbored-logo-transparent-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/logo/pinbored-logo-transparent-text.png -------------------------------------------------------------------------------- /App/images/pinbored/logo/pinbored-logo-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/logo/pinbored-logo-transparent.png -------------------------------------------------------------------------------- /App/images/pinbored/logo/pinbored.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/pinbored/logo/pinbored.psd -------------------------------------------------------------------------------- /App/images/switch/mask-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/switch/mask-square.png -------------------------------------------------------------------------------- /App/images/switch/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/switch/mask.png -------------------------------------------------------------------------------- /App/images/tile/ribbon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/tile/ribbon-2x.png -------------------------------------------------------------------------------- /App/images/tile/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/tile/ribbon.png -------------------------------------------------------------------------------- /App/images/todo/done-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/todo/done-2x.png -------------------------------------------------------------------------------- /App/images/todo/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/todo/done.png -------------------------------------------------------------------------------- /App/images/todo/search-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/todo/search-2x.png -------------------------------------------------------------------------------- /App/images/todo/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/todo/search.png -------------------------------------------------------------------------------- /App/images/todo/todo-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/todo/todo-2x.png -------------------------------------------------------------------------------- /App/images/todo/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/todo/todo.png -------------------------------------------------------------------------------- /App/images/video/fullscreen-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/fullscreen-2x.png -------------------------------------------------------------------------------- /App/images/video/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/fullscreen.png -------------------------------------------------------------------------------- /App/images/video/pause-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/pause-2x.png -------------------------------------------------------------------------------- /App/images/video/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/pause.png -------------------------------------------------------------------------------- /App/images/video/play-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/play-2x.png -------------------------------------------------------------------------------- /App/images/video/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/play.png -------------------------------------------------------------------------------- /App/images/video/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/poster.jpg -------------------------------------------------------------------------------- /App/images/video/volume-full-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/volume-full-2x.png -------------------------------------------------------------------------------- /App/images/video/volume-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/volume-full.png -------------------------------------------------------------------------------- /App/images/video/volume-off-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/volume-off-2x.png -------------------------------------------------------------------------------- /App/images/video/volume-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/images/video/volume-off.png -------------------------------------------------------------------------------- /App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/index.html -------------------------------------------------------------------------------- /App/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/index.template.html -------------------------------------------------------------------------------- /App/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/package.json -------------------------------------------------------------------------------- /App/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/app.js -------------------------------------------------------------------------------- /App/scripts/config/config-node-nwjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/config/config-node-nwjs.js -------------------------------------------------------------------------------- /App/scripts/constants/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/constants/config.js -------------------------------------------------------------------------------- /App/scripts/constants/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/constants/events.js -------------------------------------------------------------------------------- /App/scripts/controllers/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/about.js -------------------------------------------------------------------------------- /App/scripts/controllers/appstatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/appstatus.js -------------------------------------------------------------------------------- /App/scripts/controllers/behaviours/baseview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/behaviours/baseview.js -------------------------------------------------------------------------------- /App/scripts/controllers/behaviours/searchableview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/behaviours/searchableview.js -------------------------------------------------------------------------------- /App/scripts/controllers/bookmarkitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/bookmarkitem.js -------------------------------------------------------------------------------- /App/scripts/controllers/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/login.js -------------------------------------------------------------------------------- /App/scripts/controllers/mainnav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/mainnav.js -------------------------------------------------------------------------------- /App/scripts/controllers/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/overview.js -------------------------------------------------------------------------------- /App/scripts/controllers/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/settings.js -------------------------------------------------------------------------------- /App/scripts/controllers/tagitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/tagitem.js -------------------------------------------------------------------------------- /App/scripts/controllers/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/tags.js -------------------------------------------------------------------------------- /App/scripts/controllers/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/controllers/tools.js -------------------------------------------------------------------------------- /App/scripts/directives/btnloading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/directives/btnloading.js -------------------------------------------------------------------------------- /App/scripts/directives/ngenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/directives/ngenter.js -------------------------------------------------------------------------------- /App/scripts/directives/stopevent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/directives/stopevent.js -------------------------------------------------------------------------------- /App/scripts/filters/bookmarkfulltextfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/filters/bookmarkfulltextfilter.js -------------------------------------------------------------------------------- /App/scripts/filters/bookmarktagsfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/filters/bookmarktagsfilter.js -------------------------------------------------------------------------------- /App/scripts/filters/highlightfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/filters/highlightfilter.js -------------------------------------------------------------------------------- /App/scripts/filters/offsetfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/filters/offsetfilter.js -------------------------------------------------------------------------------- /App/scripts/filters/tagfulltextfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/filters/tagfulltextfilter.js -------------------------------------------------------------------------------- /App/scripts/filters/wordcutfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/filters/wordcutfilter.js -------------------------------------------------------------------------------- /App/scripts/services/appconfigservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/services/appconfigservice.js -------------------------------------------------------------------------------- /App/scripts/services/appstatusservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/services/appstatusservice.js -------------------------------------------------------------------------------- /App/scripts/services/bookmarkservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/services/bookmarkservice.js -------------------------------------------------------------------------------- /App/scripts/services/modalservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/services/modalservice.js -------------------------------------------------------------------------------- /App/scripts/services/pinboardservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/services/pinboardservice.js -------------------------------------------------------------------------------- /App/scripts/services/tagservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/services/tagservice.js -------------------------------------------------------------------------------- /App/scripts/services/usersessionservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/services/usersessionservice.js -------------------------------------------------------------------------------- /App/scripts/services/utilservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/services/utilservice.js -------------------------------------------------------------------------------- /App/scripts/tests/bookmarkitem_TEST.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/tests/bookmarkitem_TEST.js -------------------------------------------------------------------------------- /App/scripts/tests/login_TEST.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/tests/login_TEST.js -------------------------------------------------------------------------------- /App/scripts/tests/pinboardservice_TEST.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/tests/pinboardservice_TEST.js -------------------------------------------------------------------------------- /App/scripts/tests/usersessionservice_TEST.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/tests/usersessionservice_TEST.js -------------------------------------------------------------------------------- /App/scripts/tests/utilservice_TEST.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/scripts/tests/utilservice_TEST.js -------------------------------------------------------------------------------- /App/styles/app-behaviour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/app-behaviour.css -------------------------------------------------------------------------------- /App/styles/app-styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/app-styling.css -------------------------------------------------------------------------------- /App/styles/app-viewcontainer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/app-viewcontainer.css -------------------------------------------------------------------------------- /App/styles/override-autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-autocomplete.css -------------------------------------------------------------------------------- /App/styles/override-bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-bootstrap.css -------------------------------------------------------------------------------- /App/styles/override-browser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-browser.css -------------------------------------------------------------------------------- /App/styles/override-flatui-pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-flatui-pagination.css -------------------------------------------------------------------------------- /App/styles/override-flatui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-flatui.css -------------------------------------------------------------------------------- /App/styles/override-gridster.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-gridster.css -------------------------------------------------------------------------------- /App/styles/override-ng-tags-input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-ng-tags-input.css -------------------------------------------------------------------------------- /App/styles/override-noresponsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-noresponsive.css -------------------------------------------------------------------------------- /App/styles/override-splashmodal.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/override-splashmodal.old -------------------------------------------------------------------------------- /App/styles/view-about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-about.css -------------------------------------------------------------------------------- /App/styles/view-bookmarkitem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-bookmarkitem.css -------------------------------------------------------------------------------- /App/styles/view-common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-common.css -------------------------------------------------------------------------------- /App/styles/view-login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-login.css -------------------------------------------------------------------------------- /App/styles/view-mainnav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-mainnav.css -------------------------------------------------------------------------------- /App/styles/view-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-modal.css -------------------------------------------------------------------------------- /App/styles/view-overview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-overview.css -------------------------------------------------------------------------------- /App/styles/view-settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-settings.css -------------------------------------------------------------------------------- /App/styles/view-tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-tags.css -------------------------------------------------------------------------------- /App/styles/view-tools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/styles/view-tools.css -------------------------------------------------------------------------------- /App/templates/modal-about-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/templates/modal-about-template.html -------------------------------------------------------------------------------- /App/uib/template/accordion/accordion-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/accordion/accordion-group.html -------------------------------------------------------------------------------- /App/uib/template/accordion/accordion.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /App/uib/template/alert/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/alert/alert.html -------------------------------------------------------------------------------- /App/uib/template/carousel/carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/carousel/carousel.html -------------------------------------------------------------------------------- /App/uib/template/carousel/slide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/carousel/slide.html -------------------------------------------------------------------------------- /App/uib/template/datepicker/datepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/datepicker/datepicker.html -------------------------------------------------------------------------------- /App/uib/template/datepicker/day.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/datepicker/day.html -------------------------------------------------------------------------------- /App/uib/template/datepicker/month.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/datepicker/month.html -------------------------------------------------------------------------------- /App/uib/template/datepicker/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/datepicker/popup.html -------------------------------------------------------------------------------- /App/uib/template/datepicker/year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/datepicker/year.html -------------------------------------------------------------------------------- /App/uib/template/modal/backdrop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/modal/backdrop.html -------------------------------------------------------------------------------- /App/uib/template/modal/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/modal/window.html -------------------------------------------------------------------------------- /App/uib/template/pager/pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/pager/pager.html -------------------------------------------------------------------------------- /App/uib/template/pagination/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/pagination/pagination.html -------------------------------------------------------------------------------- /App/uib/template/popover/popover-html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/popover/popover-html.html -------------------------------------------------------------------------------- /App/uib/template/popover/popover-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/popover/popover-template.html -------------------------------------------------------------------------------- /App/uib/template/popover/popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/popover/popover.html -------------------------------------------------------------------------------- /App/uib/template/progressbar/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/progressbar/bar.html -------------------------------------------------------------------------------- /App/uib/template/progressbar/progress.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App/uib/template/progressbar/progressbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/progressbar/progressbar.html -------------------------------------------------------------------------------- /App/uib/template/rating/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/rating/rating.html -------------------------------------------------------------------------------- /App/uib/template/tabs/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/tabs/tab.html -------------------------------------------------------------------------------- /App/uib/template/tabs/tabset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/tabs/tabset.html -------------------------------------------------------------------------------- /App/uib/template/timepicker/timepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/timepicker/timepicker.html -------------------------------------------------------------------------------- /App/uib/template/tooltip/tooltip-html-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/tooltip/tooltip-html-popup.html -------------------------------------------------------------------------------- /App/uib/template/tooltip/tooltip-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/tooltip/tooltip-popup.html -------------------------------------------------------------------------------- /App/uib/template/tooltip/tooltip-template-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/tooltip/tooltip-template-popup.html -------------------------------------------------------------------------------- /App/uib/template/typeahead/typeahead-match.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/typeahead/typeahead-match.html -------------------------------------------------------------------------------- /App/uib/template/typeahead/typeahead-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/uib/template/typeahead/typeahead-popup.html -------------------------------------------------------------------------------- /App/views/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/about.html -------------------------------------------------------------------------------- /App/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/login.html -------------------------------------------------------------------------------- /App/views/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/overview.html -------------------------------------------------------------------------------- /App/views/partials/components/taginput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/components/taginput.html -------------------------------------------------------------------------------- /App/views/partials/items/BookmarkItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/items/BookmarkItem.html -------------------------------------------------------------------------------- /App/views/partials/items/tagitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/items/tagitem.html -------------------------------------------------------------------------------- /App/views/partials/mainnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/mainnav.html -------------------------------------------------------------------------------- /App/views/partials/search/searchbar-buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/search/searchbar-buttons.html -------------------------------------------------------------------------------- /App/views/partials/search/searchbar-extra-bookmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/search/searchbar-extra-bookmarks.html -------------------------------------------------------------------------------- /App/views/partials/search/searchbar-extra-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/search/searchbar-extra-tags.html -------------------------------------------------------------------------------- /App/views/partials/search/searchbar-fulltext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/search/searchbar-fulltext.html -------------------------------------------------------------------------------- /App/views/partials/search/searchbar-paging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/search/searchbar-paging.html -------------------------------------------------------------------------------- /App/views/partials/search/searchbar-tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/partials/search/searchbar-tags.html -------------------------------------------------------------------------------- /App/views/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/settings.html -------------------------------------------------------------------------------- /App/views/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/tags.html -------------------------------------------------------------------------------- /App/views/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/App/views/tools.html -------------------------------------------------------------------------------- /CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/CONTRIBUTE.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/README.md -------------------------------------------------------------------------------- /Resources/pinbored-credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/Resources/pinbored-credits.html -------------------------------------------------------------------------------- /Resources/pinbored-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/Resources/pinbored-icon.icns -------------------------------------------------------------------------------- /Resources/pinbored-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/Resources/pinbored-icon.png -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/bower.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/package.json -------------------------------------------------------------------------------- /sources/451574509.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/sources/451574509.jpg -------------------------------------------------------------------------------- /sources/bookmark-icon-1-614x460.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/sources/bookmark-icon-1-614x460.png -------------------------------------------------------------------------------- /sources/bookmark-icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/sources/bookmark-icon-3.png -------------------------------------------------------------------------------- /sources/pinbored-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/sources/pinbored-icon.psd -------------------------------------------------------------------------------- /sources/pinbored-logo-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/sources/pinbored-logo-github.png -------------------------------------------------------------------------------- /sources/pinbored-logo-github.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/sources/pinbored-logo-github.psd -------------------------------------------------------------------------------- /sources/pinbored-logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michahell/pinbored-nwjs/HEAD/sources/pinbored-logo.psd --------------------------------------------------------------------------------