├── .bowerrc ├── .gitignore ├── LICENSE ├── Outlook-Add-in-RepoReport.yml ├── README-localized ├── README-es-es.md ├── README-fr-fr.md ├── README-ja-jp.md ├── README-pt-br.md ├── README-ru-ru.md └── README-zh-cn.md ├── README.md ├── appread ├── app.module.js ├── app.routes.js ├── home │ ├── home.controller.js │ └── home.html ├── index.html └── services │ └── data.service.js ├── bower.json ├── content ├── Office.css ├── fabric.components.css ├── fabric.components.min.css ├── fabric.components.rtl.css ├── fabric.components.rtl.min.css ├── fabric.css ├── fabric.min.css ├── fabric.rtl.css └── fabric.rtl.min.css ├── gulpfile.js ├── jsconfig.json ├── manifest.xml ├── package.json ├── repo report screenshot.PNG ├── scripts ├── MicrosoftAjax.js ├── jquery.fabric.js └── jquery.fabric.min.js └── tsd.json /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "/bower_components" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/LICENSE -------------------------------------------------------------------------------- /Outlook-Add-in-RepoReport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/Outlook-Add-in-RepoReport.yml -------------------------------------------------------------------------------- /README-localized/README-es-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/README-localized/README-es-es.md -------------------------------------------------------------------------------- /README-localized/README-fr-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/README-localized/README-fr-fr.md -------------------------------------------------------------------------------- /README-localized/README-ja-jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/README-localized/README-ja-jp.md -------------------------------------------------------------------------------- /README-localized/README-pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/README-localized/README-pt-br.md -------------------------------------------------------------------------------- /README-localized/README-ru-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/README-localized/README-ru-ru.md -------------------------------------------------------------------------------- /README-localized/README-zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/README-localized/README-zh-cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/README.md -------------------------------------------------------------------------------- /appread/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/appread/app.module.js -------------------------------------------------------------------------------- /appread/app.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/appread/app.routes.js -------------------------------------------------------------------------------- /appread/home/home.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/appread/home/home.controller.js -------------------------------------------------------------------------------- /appread/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/appread/home/home.html -------------------------------------------------------------------------------- /appread/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/appread/index.html -------------------------------------------------------------------------------- /appread/services/data.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/appread/services/data.service.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/bower.json -------------------------------------------------------------------------------- /content/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/Office.css -------------------------------------------------------------------------------- /content/fabric.components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/fabric.components.css -------------------------------------------------------------------------------- /content/fabric.components.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/fabric.components.min.css -------------------------------------------------------------------------------- /content/fabric.components.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/fabric.components.rtl.css -------------------------------------------------------------------------------- /content/fabric.components.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/fabric.components.rtl.min.css -------------------------------------------------------------------------------- /content/fabric.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/fabric.css -------------------------------------------------------------------------------- /content/fabric.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/fabric.min.css -------------------------------------------------------------------------------- /content/fabric.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/fabric.rtl.css -------------------------------------------------------------------------------- /content/fabric.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/content/fabric.rtl.min.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/gulpfile.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/jsconfig.json -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/manifest.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/package.json -------------------------------------------------------------------------------- /repo report screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/repo report screenshot.PNG -------------------------------------------------------------------------------- /scripts/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/scripts/MicrosoftAjax.js -------------------------------------------------------------------------------- /scripts/jquery.fabric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/scripts/jquery.fabric.js -------------------------------------------------------------------------------- /scripts/jquery.fabric.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/scripts/jquery.fabric.min.js -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Outlook-Add-in-RepoReport/HEAD/tsd.json --------------------------------------------------------------------------------