├── .gitignore ├── LICENSE ├── Module1-MsGraphMobile ├── Images │ ├── Mod1_ADAL.png │ ├── Mod1_AppRegConfirm.png │ ├── Mod1_AppRegSignin.png │ ├── Mod1_Consent.png │ ├── Mod1_Debug1.png │ ├── Mod1_Debug2.png │ ├── Mod1_Debug3.png │ ├── Mod1_Signin.png │ ├── Mod1_SlnExplorer.png │ └── Mod1_Targets.png ├── README.md ├── Setup.cmd ├── Setup │ ├── Cleanup.cmd │ ├── Setup.cmd │ └── scripts │ │ ├── InstallCodeSnippets.cmd │ │ ├── installCodeSnippets.ps1 │ │ └── snippets │ │ └── OfficeSnippets.vsix ├── Slides │ └── Module1-MsGraphMobile.pptx └── Source │ └── Ex1 │ ├── Begin │ └── MobileGroupExplorer │ │ ├── .gitignore │ │ ├── MobileGroupExplorer.jsproj │ │ ├── MobileGroupExplorer.sln │ │ ├── Project_Readme.html │ │ ├── bower.json │ │ ├── build.json │ │ ├── config.xml │ │ ├── merges │ │ ├── android │ │ │ └── scripts │ │ │ │ ├── android2.3-jscompat.js │ │ │ │ └── platformOverrides.js │ │ └── windows │ │ │ └── scripts │ │ │ ├── platformOverrides.js │ │ │ └── winstore-jscompat.js │ │ ├── package.json │ │ ├── plugins │ │ ├── cordova-plugin-whitelist │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── RELEASENOTES.md │ │ │ ├── doc │ │ │ │ ├── de │ │ │ │ │ └── README.md │ │ │ │ ├── es │ │ │ │ │ └── README.md │ │ │ │ ├── fr │ │ │ │ │ └── README.md │ │ │ │ ├── it │ │ │ │ │ └── README.md │ │ │ │ ├── ja │ │ │ │ │ └── README.md │ │ │ │ ├── ko │ │ │ │ │ └── README.md │ │ │ │ ├── pl │ │ │ │ │ └── README.md │ │ │ │ └── zh │ │ │ │ │ └── README.md │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ │ └── android │ │ │ │ │ └── WhitelistPlugin.java │ │ │ └── whitelist.js │ │ └── fetch.json │ │ ├── res │ │ ├── icons │ │ │ ├── android │ │ │ │ ├── icon-36-ldpi.png │ │ │ │ ├── icon-48-mdpi.png │ │ │ │ ├── icon-72-hdpi.png │ │ │ │ └── icon-96-xhdpi.png │ │ │ ├── ios │ │ │ │ ├── icon-40-2x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-50-2x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-57-2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-60-2x.png │ │ │ │ ├── icon-60-3x.png │ │ │ │ ├── icon-60.png │ │ │ │ ├── icon-72-2x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-76-2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-small-2x.png │ │ │ │ └── icon-small.png │ │ │ ├── windows │ │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ │ ├── Square150x150Logo.scale-240.png │ │ │ │ ├── Square30x30Logo.scale-100.png │ │ │ │ ├── Square310x310Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-240.png │ │ │ │ ├── Square70x70Logo.scale-100.png │ │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ │ ├── StoreLogo.scale-100.png │ │ │ │ ├── StoreLogo.scale-240.png │ │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ │ └── Wide310x150Logo.scale-240.png │ │ │ └── wp8 │ │ │ │ ├── ApplicationIcon.png │ │ │ │ └── Background.png │ │ ├── native │ │ │ └── android │ │ │ │ └── ant.properties │ │ └── screens │ │ │ ├── android │ │ │ ├── screen-hdpi-landscape.png │ │ │ ├── screen-hdpi-portrait.png │ │ │ ├── screen-ldpi-landscape.png │ │ │ ├── screen-ldpi-portrait.png │ │ │ ├── screen-mdpi-landscape.png │ │ │ ├── screen-mdpi-portrait.png │ │ │ ├── screen-xhdpi-landscape.png │ │ │ └── screen-xhdpi-portrait.png │ │ │ ├── ios │ │ │ ├── screen-ipad-landscape-2x.png │ │ │ ├── screen-ipad-landscape.png │ │ │ ├── screen-ipad-portrait-2x.png │ │ │ ├── screen-ipad-portrait.png │ │ │ ├── screen-iphone-568h-2x.png │ │ │ ├── screen-iphone-landscape-736h.png │ │ │ ├── screen-iphone-portrait-2x.png │ │ │ ├── screen-iphone-portrait-667h.png │ │ │ ├── screen-iphone-portrait-736h.png │ │ │ └── screen-iphone-portrait.png │ │ │ ├── windows │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-240.png │ │ │ └── SplashScreenPhone.scale-240.png │ │ │ └── wp8 │ │ │ └── SplashScreenImage.jpg │ │ ├── taco.json │ │ └── www │ │ ├── app │ │ ├── app.js │ │ ├── controllers.js │ │ ├── services.js │ │ └── templates │ │ │ ├── view-home.html │ │ │ └── view-menu.html │ │ ├── css │ │ ├── app.css │ │ └── index.css │ │ ├── images │ │ ├── group.png │ │ └── user.png │ │ ├── index.html │ │ ├── lib │ │ └── ionic │ │ │ ├── css │ │ │ ├── ionic.css │ │ │ └── ionic.min.css │ │ │ ├── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ │ ├── js │ │ │ ├── angular-ui │ │ │ │ ├── angular-ui-router.js │ │ │ │ └── angular-ui-router.min.js │ │ │ ├── angular │ │ │ │ ├── angular-animate.js │ │ │ │ ├── angular-animate.min.js │ │ │ │ ├── angular-resource.js │ │ │ │ ├── angular-resource.min.js │ │ │ │ ├── angular-sanitize.js │ │ │ │ ├── angular-sanitize.min.js │ │ │ │ ├── angular.js │ │ │ │ └── angular.min.js │ │ │ ├── ionic-angular.js │ │ │ ├── ionic-angular.min.js │ │ │ ├── ionic.bundle.js │ │ │ ├── ionic.bundle.min.js │ │ │ ├── ionic.js │ │ │ └── ionic.min.js │ │ │ ├── scss │ │ │ ├── _action-sheet.scss │ │ │ ├── _animations.scss │ │ │ ├── _backdrop.scss │ │ │ ├── _badge.scss │ │ │ ├── _bar.scss │ │ │ ├── _button-bar.scss │ │ │ ├── _button.scss │ │ │ ├── _checkbox.scss │ │ │ ├── _form.scss │ │ │ ├── _grid.scss │ │ │ ├── _items.scss │ │ │ ├── _list.scss │ │ │ ├── _loading.scss │ │ │ ├── _menu.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _platform.scss │ │ │ ├── _popover.scss │ │ │ ├── _popup.scss │ │ │ ├── _progress.scss │ │ │ ├── _radio.scss │ │ │ ├── _range.scss │ │ │ ├── _refresher.scss │ │ │ ├── _reset.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _select.scss │ │ │ ├── _slide-box.scss │ │ │ ├── _slides.scss │ │ │ ├── _spinner.scss │ │ │ ├── _tabs.scss │ │ │ ├── _toggle.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _util.scss │ │ │ ├── _variables.scss │ │ │ ├── ionic.scss │ │ │ └── ionicons │ │ │ │ ├── _ionicons-font.scss │ │ │ │ ├── _ionicons-icons.scss │ │ │ │ ├── _ionicons-variables.scss │ │ │ │ └── ionicons.scss │ │ │ └── version.json │ │ └── scripts │ │ ├── index.js │ │ └── platformOverrides.js │ └── End │ └── MobileGroupExplorer │ ├── .gitignore │ ├── MobileGroupExplorer.jsproj │ ├── MobileGroupExplorer.sln │ ├── Project_Readme.html │ ├── bower.json │ ├── build.json │ ├── config.xml │ ├── merges │ ├── android │ │ └── scripts │ │ │ ├── android2.3-jscompat.js │ │ │ └── platformOverrides.js │ └── windows │ │ └── scripts │ │ ├── platformOverrides.js │ │ └── winstore-jscompat.js │ ├── package.json │ ├── plugins │ ├── cordova-plugin-ms-adal │ │ ├── CHANGELOG.md │ │ ├── License.txt │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── sample │ │ │ ├── css │ │ │ │ ├── index.css │ │ │ │ ├── style.css │ │ │ │ └── topcoat-mobile-dark.css │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── SourceCodePro-Black.otf │ │ │ │ ├── SourceCodePro-Bold.otf │ │ │ │ ├── SourceCodePro-ExtraLight.otf │ │ │ │ ├── SourceCodePro-Light.otf │ │ │ │ ├── SourceCodePro-Regular.otf │ │ │ │ ├── SourceCodePro-Semibold.otf │ │ │ │ ├── SourceSansPro-Black.otf │ │ │ │ ├── SourceSansPro-BlackIt.otf │ │ │ │ ├── SourceSansPro-Bold.otf │ │ │ │ ├── SourceSansPro-BoldIt.otf │ │ │ │ ├── SourceSansPro-ExtraLight.otf │ │ │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ │ │ ├── SourceSansPro-It.otf │ │ │ │ ├── SourceSansPro-Light.otf │ │ │ │ ├── SourceSansPro-LightIt.otf │ │ │ │ ├── SourceSansPro-Regular.otf │ │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ │ └── SourceSansPro-SemiboldIt.otf │ │ │ ├── img │ │ │ │ ├── hamburger_light.svg │ │ │ │ └── logo.png │ │ │ ├── index.html │ │ │ └── js │ │ │ │ └── index.js │ │ ├── scripts │ │ │ ├── afterPluginInstall-android.js │ │ │ ├── afterPluginInstall-windows.js │ │ │ ├── beforeInstall-windows.js │ │ │ ├── beforeUninstall-windows.js │ │ │ ├── configureEntitlementsIos.js │ │ │ └── prePackage-windows.js │ │ ├── src │ │ │ ├── android │ │ │ │ └── CordovaADAL │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── ant.properties │ │ │ │ │ ├── build-extras.gradle │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── build.xml │ │ │ │ │ ├── custom_rules.xml │ │ │ │ │ ├── libs │ │ │ │ │ ├── adal.jar │ │ │ │ │ ├── compatibility-v4.jar │ │ │ │ │ └── gson.jar │ │ │ │ │ ├── project.properties │ │ │ │ │ ├── res │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── activity_authentication.xml │ │ │ │ │ │ ├── dialog_authentication.xml │ │ │ │ │ │ └── http_auth_dialog.xml │ │ │ │ │ ├── values-sw600dp │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ ├── values-sw720dp-land │ │ │ │ │ │ └── dimens.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ │ ├── adal-strings.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── settings.gradle │ │ │ │ │ └── src │ │ │ │ │ └── com │ │ │ │ │ └── microsoft │ │ │ │ │ └── aad │ │ │ │ │ └── adal │ │ │ │ │ ├── CordovaAdalPlugin.java │ │ │ │ │ ├── DefaultAuthenticationCallback.java │ │ │ │ │ └── SimpleSerialization.java │ │ │ ├── ios │ │ │ │ ├── ADALiOS.entitlements │ │ │ │ ├── ADALiOS.framework │ │ │ │ │ ├── ADALiOS │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── ADAL.h │ │ │ │ │ │ ├── ADAuthenticationBroker.h │ │ │ │ │ │ ├── ADAuthenticationContext.h │ │ │ │ │ │ ├── ADAuthenticationError.h │ │ │ │ │ │ ├── ADAuthenticationParameters.h │ │ │ │ │ │ ├── ADAuthenticationResult.h │ │ │ │ │ │ ├── ADAuthenticationSettings.h │ │ │ │ │ │ ├── ADErrorCodes.h │ │ │ │ │ │ ├── ADInstanceDiscovery.h │ │ │ │ │ │ ├── ADLogger.h │ │ │ │ │ │ ├── ADTokenCacheStoreItem.h │ │ │ │ │ │ ├── ADTokenCacheStoreKey.h │ │ │ │ │ │ ├── ADTokenCacheStoring.h │ │ │ │ │ │ └── ADUserInformation.h │ │ │ │ │ └── Resources │ │ │ │ │ │ └── ADALiOS.bundle │ │ │ │ │ │ ├── ADAL_iPad_Storyboard.storyboardc │ │ │ │ │ │ ├── Info-8.0+.plist │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── LogonNavigator.nib │ │ │ │ │ │ │ ├── objects-8.0+.nib │ │ │ │ │ │ │ ├── objects.nib │ │ │ │ │ │ │ └── runtime.nib │ │ │ │ │ │ └── leH-LM-mXg-view-nBc-go-Asd.nib │ │ │ │ │ │ │ ├── objects-8.0+.nib │ │ │ │ │ │ │ ├── objects.nib │ │ │ │ │ │ │ └── runtime.nib │ │ │ │ │ │ ├── ADAL_iPhone_Storyboard.storyboardc │ │ │ │ │ │ ├── GcB-iz-KCM-view-UxT-im-uCY.nib │ │ │ │ │ │ │ ├── objects-8.0+.nib │ │ │ │ │ │ │ ├── objects.nib │ │ │ │ │ │ │ └── runtime.nib │ │ │ │ │ │ ├── Info-8.0+.plist │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── LogonNavigator.nib │ │ │ │ │ │ │ ├── objects-8.0+.nib │ │ │ │ │ │ │ ├── objects.nib │ │ │ │ │ │ │ └── runtime.nib │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── CordovaAdalPlugin.h │ │ │ │ ├── CordovaAdalPlugin.m │ │ │ │ ├── CordovaAdalUtils.h │ │ │ │ ├── CordovaAdalUtils.m │ │ │ │ └── tools │ │ │ │ │ └── build_sdk.sh │ │ │ └── windows │ │ │ │ ├── ADALProxy.js │ │ │ │ ├── lib │ │ │ │ ├── netcore45 │ │ │ │ │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.XML │ │ │ │ │ └── Microsoft.IdentityModel.Clients.ActiveDirectory.winmd │ │ │ │ └── wpa │ │ │ │ │ ├── Microsoft.IdentityModel.Clients.ActiveDirectory.XML │ │ │ │ │ └── Microsoft.IdentityModel.Clients.ActiveDirectory.winmd │ │ │ │ └── sso │ │ │ │ ├── plugin.xml │ │ │ │ └── www │ │ │ │ └── overrides.js │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ └── www │ │ │ │ └── tests.js │ │ └── www │ │ │ ├── AuthenticationContext.js │ │ │ ├── AuthenticationResult.js │ │ │ ├── CordovaBridge.js │ │ │ ├── TokenCache.js │ │ │ ├── TokenCacheItem.js │ │ │ ├── UserInfo.js │ │ │ └── utility.js │ ├── cordova-plugin-whitelist │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc │ │ │ ├── de │ │ │ │ └── README.md │ │ │ ├── es │ │ │ │ └── README.md │ │ │ ├── fr │ │ │ │ └── README.md │ │ │ ├── it │ │ │ │ └── README.md │ │ │ ├── ja │ │ │ │ └── README.md │ │ │ ├── ko │ │ │ │ └── README.md │ │ │ ├── pl │ │ │ │ └── README.md │ │ │ └── zh │ │ │ │ └── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src │ │ │ └── android │ │ │ │ └── WhitelistPlugin.java │ │ └── whitelist.js │ └── fetch.json │ ├── res │ ├── icons │ │ ├── android │ │ │ ├── icon-36-ldpi.png │ │ │ ├── icon-48-mdpi.png │ │ │ ├── icon-72-hdpi.png │ │ │ └── icon-96-xhdpi.png │ │ ├── ios │ │ │ ├── icon-40-2x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-50-2x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-57-2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-60-2x.png │ │ │ ├── icon-60-3x.png │ │ │ ├── icon-60.png │ │ │ ├── icon-72-2x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-76-2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-small-2x.png │ │ │ └── icon-small.png │ │ ├── windows │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-240.png │ │ │ ├── Square30x30Logo.scale-100.png │ │ │ ├── Square310x310Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-240.png │ │ │ ├── Square70x70Logo.scale-100.png │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-240.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ └── Wide310x150Logo.scale-240.png │ │ └── wp8 │ │ │ ├── ApplicationIcon.png │ │ │ └── Background.png │ ├── native │ │ └── android │ │ │ └── ant.properties │ └── screens │ │ ├── android │ │ ├── screen-hdpi-landscape.png │ │ ├── screen-hdpi-portrait.png │ │ ├── screen-ldpi-landscape.png │ │ ├── screen-ldpi-portrait.png │ │ ├── screen-mdpi-landscape.png │ │ ├── screen-mdpi-portrait.png │ │ ├── screen-xhdpi-landscape.png │ │ └── screen-xhdpi-portrait.png │ │ ├── ios │ │ ├── screen-ipad-landscape-2x.png │ │ ├── screen-ipad-landscape.png │ │ ├── screen-ipad-portrait-2x.png │ │ ├── screen-ipad-portrait.png │ │ ├── screen-iphone-568h-2x.png │ │ ├── screen-iphone-landscape-736h.png │ │ ├── screen-iphone-portrait-2x.png │ │ ├── screen-iphone-portrait-667h.png │ │ ├── screen-iphone-portrait-736h.png │ │ └── screen-iphone-portrait.png │ │ ├── windows │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-240.png │ │ └── SplashScreenPhone.scale-240.png │ │ └── wp8 │ │ └── SplashScreenImage.jpg │ ├── taco.json │ └── www │ ├── app │ ├── app.js │ ├── controllers.js │ ├── services.js │ └── templates │ │ ├── view-home.html │ │ └── view-menu.html │ ├── css │ ├── app.css │ └── index.css │ ├── images │ ├── group.png │ └── user.png │ ├── index.html │ ├── lib │ └── ionic │ │ ├── css │ │ ├── ionic.css │ │ └── ionic.min.css │ │ ├── fonts │ │ ├── ionicons.eot │ │ ├── ionicons.svg │ │ ├── ionicons.ttf │ │ └── ionicons.woff │ │ ├── js │ │ ├── angular-ui │ │ │ ├── angular-ui-router.js │ │ │ └── angular-ui-router.min.js │ │ ├── angular │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular.js │ │ │ └── angular.min.js │ │ ├── ionic-angular.js │ │ ├── ionic-angular.min.js │ │ ├── ionic.bundle.js │ │ ├── ionic.bundle.min.js │ │ ├── ionic.js │ │ └── ionic.min.js │ │ ├── scss │ │ ├── _action-sheet.scss │ │ ├── _animations.scss │ │ ├── _backdrop.scss │ │ ├── _badge.scss │ │ ├── _bar.scss │ │ ├── _button-bar.scss │ │ ├── _button.scss │ │ ├── _checkbox.scss │ │ ├── _form.scss │ │ ├── _grid.scss │ │ ├── _items.scss │ │ ├── _list.scss │ │ ├── _loading.scss │ │ ├── _menu.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _platform.scss │ │ ├── _popover.scss │ │ ├── _popup.scss │ │ ├── _progress.scss │ │ ├── _radio.scss │ │ ├── _range.scss │ │ ├── _refresher.scss │ │ ├── _reset.scss │ │ ├── _scaffolding.scss │ │ ├── _select.scss │ │ ├── _slide-box.scss │ │ ├── _slides.scss │ │ ├── _spinner.scss │ │ ├── _tabs.scss │ │ ├── _toggle.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _util.scss │ │ ├── _variables.scss │ │ ├── ionic.scss │ │ └── ionicons │ │ │ ├── _ionicons-font.scss │ │ │ ├── _ionicons-icons.scss │ │ │ ├── _ionicons-variables.scss │ │ │ └── ionicons.scss │ │ └── version.json │ └── scripts │ ├── index.js │ └── platformOverrides.js ├── Module2-MsGraphWeb ├── Images │ ├── Mod2_AppPortal.png │ ├── Mod2_AppRegConfirm.png │ ├── Mod2_AppRegSignin.png │ ├── Mod2_AppRegV2.png │ ├── Mod2_Apps.png │ ├── Mod2_Authenticated.png │ ├── Mod2_Consent.png │ ├── Mod2_ContactsHardCode.png │ ├── Mod2_NewProj1.png │ ├── Mod2_NewProj2.png │ ├── Mod2_NoAuth.png │ ├── Mod2_ProjProp.png │ ├── Mod2_ProjStruct.png │ ├── Mod2_Redirect.png │ ├── Mod2_Secret.png │ ├── Mod2_SignIn.png │ ├── Mod2_complete.png │ ├── Mod2_platforms.png │ └── Mod2_ss.png ├── README.md ├── Setup.cmd ├── Setup │ ├── Cleanup.cmd │ ├── Setup.cmd │ └── scripts │ │ ├── InstallCodeSnippets.cmd │ │ ├── installCodeSnippets.ps1 │ │ └── snippets │ │ └── OfficeSnippets.vsix ├── Slides │ └── Module2-MsGraphWeb.pptx └── Source │ ├── Ex1 │ ├── Begin │ │ ├── .bowerrc │ │ ├── app │ │ │ ├── app.js │ │ │ └── templates │ │ │ │ ├── view-contacts.html │ │ │ │ └── view-login.html │ │ ├── bower.json │ │ ├── index.html │ │ └── lib │ │ │ ├── angular-route │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-route.js │ │ │ ├── angular-route.min.js │ │ │ ├── angular-route.min.js.map │ │ │ ├── bower.json │ │ │ ├── index.js │ │ │ └── package.json │ │ │ ├── angular │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-csp.css │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── angular.min.js.gzip │ │ │ ├── angular.min.js.map │ │ │ ├── bower.json │ │ │ ├── index.js │ │ │ └── package.json │ │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── CHANGELOG.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── grunt │ │ │ │ ├── .jshintrc │ │ │ │ ├── bs-commonjs-generator.js │ │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ │ ├── bs-lessdoc-parser.js │ │ │ │ ├── bs-raw-files-generator.js │ │ │ │ ├── configBridge.json │ │ │ │ └── sauce_browsers.yml │ │ │ ├── js │ │ │ │ ├── .jscsrc │ │ │ │ ├── .jshintrc │ │ │ │ ├── affix.js │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ ├── less │ │ │ │ ├── .csscomb.json │ │ │ │ ├── .csslintrc │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── mixins │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── background-variant.less │ │ │ │ │ ├── border-radius.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── center-block.less │ │ │ │ │ ├── clearfix.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── gradients.less │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hide-text.less │ │ │ │ │ ├── image.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ ├── opacity.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ ├── reset-text.less │ │ │ │ │ ├── resize.less │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ ├── size.less │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ ├── table-row.less │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-embed.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── nuget │ │ │ │ ├── MyGet.ps1 │ │ │ │ ├── bootstrap.less.nuspec │ │ │ │ └── bootstrap.nuspec │ │ │ ├── package.js │ │ │ └── package.json │ │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── AUTHORS.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ └── src │ │ │ ├── .jshintrc │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── location.js │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── DOMEval.js │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── adjustCSS.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── showHide.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ └── swap.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ ├── accepts.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ ├── acceptData.js │ │ │ │ ├── dataPriv.js │ │ │ │ └── dataUser.js │ │ │ ├── deferred.js │ │ │ ├── deferred │ │ │ └── exceptionHook.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ ├── animatedSelector.js │ │ │ └── support.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ ├── focusin.js │ │ │ ├── support.js │ │ │ └── trigger.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── buildFragment.js │ │ │ ├── createSafeFragment.js │ │ │ ├── getAll.js │ │ │ ├── setGlobalEval.js │ │ │ ├── support.js │ │ │ ├── var │ │ │ │ ├── nodeNames.js │ │ │ │ ├── rcheckableType.js │ │ │ │ ├── rleadingWhitespace.js │ │ │ │ ├── rscriptType.js │ │ │ │ └── rtagName.js │ │ │ └── wrapMap.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── support.js │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ ├── dir.js │ │ │ │ ├── rneedsContext.js │ │ │ │ └── siblings.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── deletedIds.js │ │ │ ├── document.js │ │ │ ├── documentElement.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rcssNum.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ └── End │ │ ├── .bowerrc │ │ ├── app │ │ ├── app.js │ │ └── templates │ │ │ ├── view-contacts.html │ │ │ └── view-login.html │ │ ├── bower.json │ │ ├── index.html │ │ └── lib │ │ ├── adal-angular │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── changelog.txt │ │ ├── contributing.md │ │ ├── dist │ │ │ ├── adal-angular.min.js │ │ │ └── adal.min.js │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── adal-angular.js │ │ │ └── adal.js │ │ └── package.json │ │ ├── angular-route │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-route.js │ │ ├── angular-route.min.js │ │ ├── angular-route.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ │ └── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ │ └── src │ │ ├── .jshintrc │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── DOMEval.js │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ ├── support.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ ├── accepts.js │ │ ├── support.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── deferred.js │ │ ├── deferred │ │ └── exceptionHook.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ ├── animatedSelector.js │ │ └── support.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── createSafeFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── nodeNames.js │ │ │ ├── rcheckableType.js │ │ │ ├── rleadingWhitespace.js │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── support.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── var │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── deletedIds.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcssNum.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js │ └── Ex2 │ └── End │ ├── MyContacts.sln │ └── MyContacts │ ├── .bowerrc │ ├── Controllers │ └── HomeController.cs │ ├── Models │ └── ContactModel.cs │ ├── MyContacts.xproj │ ├── Project_Readme.html │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── Utils │ ├── SessionTokenCache.cs │ └── SettingsHelper.cs │ ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── bower.json │ ├── gulpfile.js │ ├── package.json │ ├── project.json │ └── wwwroot │ ├── _references.js │ ├── css │ └── site.css │ ├── favicon.ico │ ├── images │ ├── ASP-NET-Banners-01.png │ ├── ASP-NET-Banners-02.png │ ├── Banner-01-Azure.png │ └── Banner-02-VS.png │ ├── js │ └── site.js │ ├── lib │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ └── jquery │ │ ├── .bower.json │ │ ├── MIT-LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── web.config ├── Module3-OfficeAddins ├── Images │ ├── Mod3_ActivityEmpty.png │ ├── Mod3_AddView.png │ ├── Mod3_AddinCommand.png │ ├── Mod3_AddinEO.png │ ├── Mod3_AgaveView.png │ ├── Mod3_AppRegSignin.png │ ├── Mod3_CertError.png │ ├── Mod3_Connected.png │ ├── Mod3_Consent.png │ ├── Mod3_Convert.png │ ├── Mod3_DataChanged.png │ ├── Mod3_ExcelTable.png │ ├── Mod3_Gulp.png │ ├── Mod3_InsertAddin.png │ ├── Mod3_InstallCert.png │ ├── Mod3_Mail1.png │ ├── Mod3_Mail2.png │ ├── Mod3_MailTaskPane.png │ ├── Mod3_ManageAddins.png │ ├── Mod3_NewExcel.png │ ├── Mod3_PubDB1.png │ ├── Mod3_PubDB2.png │ ├── Mod3_RegSuccess.png │ ├── Mod3_Share.png │ ├── Mod3_Share2.png │ ├── Mod3_Share3.png │ ├── Mod3_SharedFolderOption.png │ ├── Mod3_SlnWithOffice.png │ ├── Mod3_TrustedCats.png │ ├── Mod3_UploadManifest.png │ ├── Mod3_Wizard1.png │ ├── Mod3_Wizard2.png │ ├── Mod3_Yeoman.png │ ├── Mod3_debug.png │ └── Mod3_localhost.png ├── README.md ├── Setup.cmd ├── Setup │ ├── Cleanup.cmd │ ├── Setup.cmd │ └── scripts │ │ ├── InstallCodeSnippets.cmd │ │ ├── installCodeSnippets.ps1 │ │ └── snippets │ │ └── OfficeSnippets.vsix ├── Slides │ └── Module3-OfficeAddins.pptx └── Source │ ├── Ex1 │ ├── Begin │ │ └── MailCRM │ │ │ ├── MailCRM.Data │ │ │ ├── Comment.sql │ │ │ ├── MailCRM.Data.refactorlog │ │ │ └── MailCRM.Data.sqlproj │ │ │ ├── MailCRM.sln │ │ │ └── MailCRM │ │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── WebApiConfig.cs │ │ │ ├── Content │ │ │ ├── Site.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── comments-16.png │ │ │ ├── comments-32.png │ │ │ ├── comments-64.png │ │ │ └── comments-80.png │ │ │ ├── Controllers │ │ │ ├── CommentsController.cs │ │ │ ├── CommentsHub.cs │ │ │ └── HomeController.cs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── MailCRM.csproj │ │ │ ├── Models │ │ │ ├── Comment.cs │ │ │ ├── CommentModel.Context.cs │ │ │ ├── CommentModel.Context.tt │ │ │ ├── CommentModel.Designer.cs │ │ │ ├── CommentModel.cs │ │ │ ├── CommentModel.edmx │ │ │ ├── CommentModel.edmx.diagram │ │ │ └── CommentModel.tt │ │ │ ├── Project_Readme.html │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── jquery.signalR-2.1.2.js │ │ │ ├── jquery.signalR-2.1.2.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.6.2.js │ │ │ ├── respond.js │ │ │ └── respond.min.js │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── packages.config │ └── End │ │ └── MailCRM │ │ ├── MailCRM.Data │ │ ├── Comment.sql │ │ ├── MailCRM.Data.refactorlog │ │ └── MailCRM.Data.sqlproj │ │ ├── MailCRM.Office │ │ ├── MailCRM.Office.csproj │ │ └── MailCRM.OfficeManifest │ │ │ ├── MailCRM.Office.xml │ │ │ └── SharePointProjectItem.spdata │ │ ├── MailCRM.sln │ │ └── MailCRM │ │ ├── App_README.txt │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── WebApiConfig.cs │ │ ├── Content │ │ ├── Office.css │ │ ├── Site.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── comments-16.png │ │ ├── comments-32.png │ │ ├── comments-64.png │ │ └── comments-80.png │ │ ├── Controllers │ │ ├── CommentsController.cs │ │ ├── CommentsHub.cs │ │ └── HomeController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── MailCRM.csproj │ │ ├── Models │ │ ├── Comment.cs │ │ ├── CommentModel.Context.cs │ │ ├── CommentModel.Context.tt │ │ ├── CommentModel.Designer.cs │ │ ├── CommentModel.cs │ │ ├── CommentModel.edmx │ │ ├── CommentModel.edmx.diagram │ │ └── CommentModel.tt │ │ ├── Project_Readme.html │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── Office │ │ │ └── MicrosoftAjax.js │ │ ├── _officeintellisense.js │ │ ├── _references.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.signalR-2.1.2.js │ │ ├── jquery.signalR-2.1.2.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Home │ │ │ ├── Agave.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ └── packages.config │ ├── Ex2 │ └── End │ │ └── ContactCleanup │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── app │ │ ├── app.css │ │ ├── app.js │ │ └── home │ │ │ ├── home.css │ │ │ ├── home.html │ │ │ └── home.js │ │ ├── bower.json │ │ ├── bower_components │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .jshintrc │ │ │ ├── AUTHORS.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── jquery-migrate.js │ │ │ ├── jquery-migrate.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── package.json │ │ │ ├── speed │ │ │ │ ├── benchmark.js │ │ │ │ ├── benchmarker.css │ │ │ │ ├── benchmarker.js │ │ │ │ ├── closest.html │ │ │ │ ├── css.html │ │ │ │ ├── event.html │ │ │ │ ├── filter.html │ │ │ │ ├── find.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery-basis.js │ │ │ │ └── slice.vs.concat.html │ │ │ ├── src │ │ │ │ ├── .jshintrc │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ │ ├── jsonp.js │ │ │ │ │ ├── script.js │ │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── css.js │ │ │ │ ├── data.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── event-alias.js │ │ │ │ ├── event.js │ │ │ │ ├── exports.js │ │ │ │ ├── intro.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── serialize.js │ │ │ │ ├── sizzle-jquery.js │ │ │ │ ├── support.js │ │ │ │ └── traversing.js │ │ │ └── test │ │ │ │ ├── .jshintignore │ │ │ │ ├── .jshintrc │ │ │ │ ├── csp.php │ │ │ │ ├── data │ │ │ │ ├── 1x1.jpg │ │ │ │ ├── ajax │ │ │ │ │ └── unreleasedXHR.html │ │ │ │ ├── atom+xml.php │ │ │ │ ├── badcall.js │ │ │ │ ├── badjson.js │ │ │ │ ├── cleanScript.html │ │ │ │ ├── core │ │ │ │ │ └── cc_on.html │ │ │ │ ├── dashboard.xml │ │ │ │ ├── dimensions │ │ │ │ │ ├── documentLarge.html │ │ │ │ │ └── documentSmall.html │ │ │ │ ├── echoData.php │ │ │ │ ├── echoQuery.php │ │ │ │ ├── errorWithText.php │ │ │ │ ├── etag.php │ │ │ │ ├── evalScript.php │ │ │ │ ├── event │ │ │ │ │ ├── longLoadScript.php │ │ │ │ │ ├── promiseReady.html │ │ │ │ │ └── syncReady.html │ │ │ │ ├── headers.php │ │ │ │ ├── if_modified_since.php │ │ │ │ ├── iframe.html │ │ │ │ ├── jquery-1.8.2.ajax_xhr.min.js │ │ │ │ ├── json.php │ │ │ │ ├── json_obj.js │ │ │ │ ├── jsonp.php │ │ │ │ ├── manipulation │ │ │ │ │ └── iframe-denied.html │ │ │ │ ├── name.html │ │ │ │ ├── name.php │ │ │ │ ├── nocontent.php │ │ │ │ ├── offset │ │ │ │ │ ├── absolute.html │ │ │ │ │ ├── body.html │ │ │ │ │ ├── fixed.html │ │ │ │ │ ├── relative.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── static.html │ │ │ │ │ └── table.html │ │ │ │ ├── params_html.php │ │ │ │ ├── readywaitasset.js │ │ │ │ ├── readywaitloader.js │ │ │ │ ├── script.php │ │ │ │ ├── selector │ │ │ │ │ ├── html5_selector.html │ │ │ │ │ └── sizzle_cache.html │ │ │ │ ├── statusText.php │ │ │ │ ├── support │ │ │ │ │ ├── bodyBackground.html │ │ │ │ │ ├── shrinkWrapBlocks.html │ │ │ │ │ └── testElementCrash.html │ │ │ │ ├── test.html │ │ │ │ ├── test.js │ │ │ │ ├── test.php │ │ │ │ ├── test2.html │ │ │ │ ├── test3.html │ │ │ │ ├── testinit.js │ │ │ │ ├── testrunner.js │ │ │ │ ├── testsuite.css │ │ │ │ ├── text.php │ │ │ │ ├── ua.txt │ │ │ │ ├── with_fries.xml │ │ │ │ └── with_fries_over_jsonp.php │ │ │ │ ├── delegatetest.html │ │ │ │ ├── hovertest.html │ │ │ │ ├── index.html │ │ │ │ ├── localfile.html │ │ │ │ ├── networkerror.html │ │ │ │ ├── polluted.php │ │ │ │ ├── readywait.html │ │ │ │ ├── unit │ │ │ │ ├── ajax.js │ │ │ │ ├── attributes.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── css.js │ │ │ │ ├── data.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── event.js │ │ │ │ ├── exports.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── offset.js │ │ │ │ ├── queue.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── support.js │ │ │ │ └── traversing.js │ │ │ │ └── xhtml.php │ │ ├── microsoft.office.js │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── content │ │ │ │ └── officethemes.css │ │ │ └── scripts │ │ │ │ └── office │ │ │ │ ├── 1 │ │ │ │ ├── access-web-16.00.debug.js │ │ │ │ ├── access-web-16.00.js │ │ │ │ ├── ar-sa │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── bg-bg │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── cs-cz │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── da-dk │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── de-de │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── el-gr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── en-us │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── es-es │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── et-ee │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── excel-15.01.debug.js │ │ │ │ ├── excel-15.01.js │ │ │ │ ├── excel-15.debug.js │ │ │ │ ├── excel-15.js │ │ │ │ ├── excel-ios-16.00.debug.js │ │ │ │ ├── excel-ios-16.00.js │ │ │ │ ├── excel-web-16.00.debug.js │ │ │ │ ├── excel-web-16.00.js │ │ │ │ ├── excel-win32-16.00.debug.js │ │ │ │ ├── excel-win32-16.00.js │ │ │ │ ├── excelios-15.debug.js │ │ │ │ ├── excelios-15.js │ │ │ │ ├── excelwebapp-15.01.debug.js │ │ │ │ ├── excelwebapp-15.01.js │ │ │ │ ├── excelwebapp-15.debug.js │ │ │ │ ├── excelwebapp-15.js │ │ │ │ ├── fi-fi │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── fr-fr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── he-il │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hi-in │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hr-hr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hu-hu │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── id-id │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── it-it │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ja-jp │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── kk-kz │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ko-kr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── lt-lt │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── lv-lv │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ms-my │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── nb-no │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── nl-nl │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── o15apptofilemappingtable.debug.js │ │ │ │ ├── o15apptofilemappingtable.js │ │ │ │ ├── office-vsdoc.js │ │ │ │ ├── office.debug.js │ │ │ │ ├── office.js │ │ │ │ ├── outlook-15.01.debug.js │ │ │ │ ├── outlook-15.01.js │ │ │ │ ├── outlook-15.02.debug.js │ │ │ │ ├── outlook-15.02.js │ │ │ │ ├── outlook-15.debug.js │ │ │ │ ├── outlook-15.js │ │ │ │ ├── outlook-web-16.00.debug.js │ │ │ │ ├── outlook-web-16.00.js │ │ │ │ ├── outlook-win32-16.00.debug.js │ │ │ │ ├── outlook-win32-16.00.js │ │ │ │ ├── outlook-win32.debug-vsdoc.js │ │ │ │ ├── outlookwebapp-15.01.debug.js │ │ │ │ ├── outlookwebapp-15.01.js │ │ │ │ ├── outlookwebapp-15.debug.js │ │ │ │ ├── outlookwebapp-15.js │ │ │ │ ├── pl-pl │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── powerpoint-15.01.debug.js │ │ │ │ ├── powerpoint-15.01.js │ │ │ │ ├── powerpoint-15.debug.js │ │ │ │ ├── powerpoint-15.js │ │ │ │ ├── powerpoint-ios-16.00.debug.js │ │ │ │ ├── powerpoint-ios-16.00.js │ │ │ │ ├── powerpoint-web-16.00.debug.js │ │ │ │ ├── powerpoint-web-16.00.js │ │ │ │ ├── powerpoint-win32-16.00.debug.js │ │ │ │ ├── powerpoint-win32-16.00.js │ │ │ │ ├── powerpointios-15.debug.js │ │ │ │ ├── powerpointios-15.js │ │ │ │ ├── project-15.01.debug.js │ │ │ │ ├── project-15.01.js │ │ │ │ ├── project-15.debug.js │ │ │ │ ├── project-15.js │ │ │ │ ├── project-win32-16.00.debug.js │ │ │ │ ├── project-win32-16.00.js │ │ │ │ ├── pt-br │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ro-ro │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ru-ru │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sk-sk │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sl-si │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sr-latn-cs │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sv-se │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── th-th │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── tr-tr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── uk-ua │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── vi-vn │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── word-15.01.debug.js │ │ │ │ ├── word-15.01.js │ │ │ │ ├── word-15.debug.js │ │ │ │ ├── word-15.js │ │ │ │ ├── word-ios-16.00.debug.js │ │ │ │ ├── word-ios-16.00.js │ │ │ │ ├── word-web-16.00.debug.js │ │ │ │ ├── word-web-16.00.js │ │ │ │ ├── word-win32-16.00.debug.js │ │ │ │ ├── word-win32-16.00.js │ │ │ │ ├── wordios-15.debug.js │ │ │ │ ├── wordios-15.js │ │ │ │ ├── zh-cn │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ └── zh-tw │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ └── metadata │ │ │ │ ├── endpoints.xml │ │ │ │ └── features.xml │ │ └── office-ui-fabric │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Third Party Notices.txt │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── components │ │ │ │ ├── Breadcrumb │ │ │ │ │ ├── Breadcrumb.css │ │ │ │ │ ├── Breadcrumb.html │ │ │ │ │ ├── Breadcrumb.json │ │ │ │ │ ├── Breadcrumb.min.css │ │ │ │ │ └── Breadcrumb.scss │ │ │ │ ├── Button │ │ │ │ │ ├── Button.Command.html │ │ │ │ │ ├── Button.Compound.html │ │ │ │ │ ├── Button.Hero.html │ │ │ │ │ ├── Button.Primary.html │ │ │ │ │ ├── Button.css │ │ │ │ │ ├── Button.html │ │ │ │ │ ├── Button.json │ │ │ │ │ ├── Button.min.css │ │ │ │ │ └── Button.scss │ │ │ │ ├── Callout │ │ │ │ │ ├── Callout.ActionText.html │ │ │ │ │ ├── Callout.Close.html │ │ │ │ │ ├── Callout.Oobe.html │ │ │ │ │ ├── Callout.Peek.html │ │ │ │ │ ├── Callout.css │ │ │ │ │ ├── Callout.html │ │ │ │ │ ├── Callout.json │ │ │ │ │ ├── Callout.min.css │ │ │ │ │ └── Callout.scss │ │ │ │ ├── ChoiceField │ │ │ │ │ ├── ChoiceField.Checkbox.Disabled.html │ │ │ │ │ ├── ChoiceField.Checkbox.Selected.html │ │ │ │ │ ├── ChoiceField.Checkbox.html │ │ │ │ │ ├── ChoiceField.ChoiceFieldGroup.html │ │ │ │ │ ├── ChoiceField.Disabled.html │ │ │ │ │ ├── ChoiceField.Selected.html │ │ │ │ │ ├── ChoiceField.css │ │ │ │ │ ├── ChoiceField.html │ │ │ │ │ ├── ChoiceField.json │ │ │ │ │ ├── ChoiceField.min.css │ │ │ │ │ └── ChoiceField.scss │ │ │ │ ├── CommandBar │ │ │ │ │ ├── CommandBar.css │ │ │ │ │ ├── CommandBar.html │ │ │ │ │ ├── CommandBar.json │ │ │ │ │ ├── CommandBar.min.css │ │ │ │ │ └── CommandBar.scss │ │ │ │ ├── ContextualMenu │ │ │ │ │ ├── ContextualMenu.Dividers.html │ │ │ │ │ ├── ContextualMenu.Multiselect.html │ │ │ │ │ ├── ContextualMenu.SubMenu.html │ │ │ │ │ ├── ContextualMenu.css │ │ │ │ │ ├── ContextualMenu.html │ │ │ │ │ ├── ContextualMenu.json │ │ │ │ │ ├── ContextualMenu.min.css │ │ │ │ │ └── ContextualMenu.scss │ │ │ │ ├── DatePicker │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ ├── DatePicker.html │ │ │ │ │ ├── DatePicker.json │ │ │ │ │ ├── DatePicker.min.css │ │ │ │ │ └── DatePicker.scss │ │ │ │ ├── Dialog │ │ │ │ │ ├── Dialog.Blocking.html │ │ │ │ │ ├── Dialog.Close.html │ │ │ │ │ ├── Dialog.LgHeader.html │ │ │ │ │ ├── Dialog.Multiline.html │ │ │ │ │ ├── Dialog.css │ │ │ │ │ ├── Dialog.html │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Dialog.min.css │ │ │ │ │ └── Dialog.scss │ │ │ │ ├── Dropdown │ │ │ │ │ ├── Dropdown.Disabled.html │ │ │ │ │ ├── Dropdown.css │ │ │ │ │ ├── Dropdown.html │ │ │ │ │ ├── Dropdown.json │ │ │ │ │ ├── Dropdown.min.css │ │ │ │ │ └── Dropdown.scss │ │ │ │ ├── Facepile │ │ │ │ │ ├── Facepile.css │ │ │ │ │ ├── Facepile.html │ │ │ │ │ ├── Facepile.json │ │ │ │ │ ├── Facepile.min.css │ │ │ │ │ └── Facepile.scss │ │ │ │ ├── Label │ │ │ │ │ ├── Label.Disabled.html │ │ │ │ │ ├── Label.Required.html │ │ │ │ │ ├── Label.css │ │ │ │ │ ├── Label.html │ │ │ │ │ ├── Label.json │ │ │ │ │ ├── Label.min.css │ │ │ │ │ └── Label.scss │ │ │ │ ├── Link │ │ │ │ │ ├── Link.Hero.html │ │ │ │ │ ├── Link.css │ │ │ │ │ ├── Link.html │ │ │ │ │ ├── Link.json │ │ │ │ │ ├── Link.min.css │ │ │ │ │ └── Link.scss │ │ │ │ ├── List │ │ │ │ │ ├── List.Grid.html │ │ │ │ │ ├── List.css │ │ │ │ │ ├── List.html │ │ │ │ │ ├── List.json │ │ │ │ │ ├── List.min.css │ │ │ │ │ └── List.scss │ │ │ │ ├── ListItem │ │ │ │ │ ├── ListItem.Document.html │ │ │ │ │ ├── ListItem.Image.html │ │ │ │ │ ├── ListItem.Selectable.html │ │ │ │ │ ├── ListItem.Selected.html │ │ │ │ │ ├── ListItem.Unread.html │ │ │ │ │ ├── ListItem.Unseen.html │ │ │ │ │ ├── ListItem.css │ │ │ │ │ ├── ListItem.html │ │ │ │ │ ├── ListItem.json │ │ │ │ │ ├── ListItem.min.css │ │ │ │ │ └── ListItem.scss │ │ │ │ ├── MessageBanner │ │ │ │ │ ├── MessageBanner.css │ │ │ │ │ ├── MessageBanner.html │ │ │ │ │ ├── MessageBanner.json │ │ │ │ │ ├── MessageBanner.min.css │ │ │ │ │ └── MessageBanner.scss │ │ │ │ ├── NavBar │ │ │ │ │ ├── NavBar.css │ │ │ │ │ ├── NavBar.html │ │ │ │ │ ├── NavBar.json │ │ │ │ │ ├── NavBar.min.css │ │ │ │ │ └── NavBar.scss │ │ │ │ ├── OrgChart │ │ │ │ │ ├── OrgChart.Square.html │ │ │ │ │ ├── OrgChart.css │ │ │ │ │ ├── OrgChart.html │ │ │ │ │ ├── OrgChart.json │ │ │ │ │ ├── OrgChart.min.css │ │ │ │ │ └── OrgChart.scss │ │ │ │ ├── Overlay │ │ │ │ │ ├── Overlay.Dark.html │ │ │ │ │ ├── Overlay.None.html │ │ │ │ │ ├── Overlay.css │ │ │ │ │ ├── Overlay.html │ │ │ │ │ ├── Overlay.json │ │ │ │ │ ├── Overlay.min.css │ │ │ │ │ └── Overlay.scss │ │ │ │ ├── Panel │ │ │ │ │ ├── Panel.ExtraLarge.html │ │ │ │ │ ├── Panel.Large.html │ │ │ │ │ ├── Panel.Medium.html │ │ │ │ │ ├── Panel.css │ │ │ │ │ ├── Panel.html │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Panel.min.css │ │ │ │ │ └── Panel.scss │ │ │ │ ├── PeoplePicker │ │ │ │ │ ├── PeoplePicker.Compact.html │ │ │ │ │ ├── PeoplePicker.Disconnected.html │ │ │ │ │ ├── PeoplePicker.FacePile.html │ │ │ │ │ ├── PeoplePicker.MembersList.html │ │ │ │ │ ├── PeoplePicker.Searching.png │ │ │ │ │ ├── PeoplePicker.css │ │ │ │ │ ├── PeoplePicker.html │ │ │ │ │ ├── PeoplePicker.json │ │ │ │ │ ├── PeoplePicker.min.css │ │ │ │ │ └── PeoplePicker.scss │ │ │ │ ├── Persona │ │ │ │ │ ├── Persona.ExtraLarge.html │ │ │ │ │ ├── Persona.ExtraSmall.html │ │ │ │ │ ├── Persona.Initials.html │ │ │ │ │ ├── Persona.Large.html │ │ │ │ │ ├── Persona.Person.jpg │ │ │ │ │ ├── Persona.Person2.png │ │ │ │ │ ├── Persona.Presence.Available.html │ │ │ │ │ ├── Persona.Presence.Away.html │ │ │ │ │ ├── Persona.Presence.Blocked.html │ │ │ │ │ ├── Persona.Presence.Busy.html │ │ │ │ │ ├── Persona.Presence.Dnd.html │ │ │ │ │ ├── Persona.Presence.Offline.html │ │ │ │ │ ├── Persona.Presence.Square.Available.html │ │ │ │ │ ├── Persona.Presence.Square.Away.html │ │ │ │ │ ├── Persona.Presence.Square.Blocked.html │ │ │ │ │ ├── Persona.Presence.Square.Busy.html │ │ │ │ │ ├── Persona.Presence.Square.Dnd.html │ │ │ │ │ ├── Persona.Presence.Square.Offline.html │ │ │ │ │ ├── Persona.Small.html │ │ │ │ │ ├── Persona.Square.ExtraLarge.html │ │ │ │ │ ├── Persona.Square.ExtraSmall.html │ │ │ │ │ ├── Persona.Square.Large.html │ │ │ │ │ ├── Persona.Square.Small.html │ │ │ │ │ ├── Persona.Square.Tiny.html │ │ │ │ │ ├── Persona.Square.html │ │ │ │ │ ├── Persona.Tiny.html │ │ │ │ │ ├── Persona.css │ │ │ │ │ ├── Persona.html │ │ │ │ │ ├── Persona.json │ │ │ │ │ ├── Persona.min.css │ │ │ │ │ └── Persona.scss │ │ │ │ ├── PersonaCard │ │ │ │ │ ├── PersonaCard.Square.html │ │ │ │ │ ├── PersonaCard.css │ │ │ │ │ ├── PersonaCard.html │ │ │ │ │ ├── PersonaCard.json │ │ │ │ │ ├── PersonaCard.min.css │ │ │ │ │ └── PersonaCard.scss │ │ │ │ ├── Pivot │ │ │ │ │ ├── Pivot.Large.html │ │ │ │ │ ├── Pivot.Tabs.Large.html │ │ │ │ │ ├── Pivot.Tabs.html │ │ │ │ │ ├── Pivot.css │ │ │ │ │ ├── Pivot.html │ │ │ │ │ ├── Pivot.json │ │ │ │ │ ├── Pivot.min.css │ │ │ │ │ └── Pivot.scss │ │ │ │ ├── ProgressIndicator │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ ├── ProgressIndicator.html │ │ │ │ │ ├── ProgressIndicator.json │ │ │ │ │ ├── ProgressIndicator.min.css │ │ │ │ │ └── ProgressIndicator.scss │ │ │ │ ├── SearchBox │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ ├── SearchBox.html │ │ │ │ │ ├── SearchBox.json │ │ │ │ │ ├── SearchBox.min.css │ │ │ │ │ └── SearchBox.scss │ │ │ │ ├── Spinner │ │ │ │ │ ├── Spinner.Large.html │ │ │ │ │ ├── Spinner.Message.Large.html │ │ │ │ │ ├── Spinner.Message.html │ │ │ │ │ ├── Spinner.css │ │ │ │ │ ├── Spinner.html │ │ │ │ │ ├── Spinner.json │ │ │ │ │ ├── Spinner.min.css │ │ │ │ │ └── Spinner.scss │ │ │ │ ├── Table │ │ │ │ │ ├── Table.css │ │ │ │ │ ├── Table.html │ │ │ │ │ ├── Table.json │ │ │ │ │ ├── Table.min.css │ │ │ │ │ └── Table.scss │ │ │ │ ├── TextField │ │ │ │ │ ├── TextField.Multiline.html │ │ │ │ │ ├── TextField.Placeholder.html │ │ │ │ │ ├── TextField.Underlined.html │ │ │ │ │ ├── TextField.css │ │ │ │ │ ├── TextField.html │ │ │ │ │ ├── TextField.json │ │ │ │ │ ├── TextField.min.css │ │ │ │ │ └── TextField.scss │ │ │ │ └── Toggle │ │ │ │ │ ├── Toggle.TextLeft.html │ │ │ │ │ ├── Toggle.css │ │ │ │ │ ├── Toggle.html │ │ │ │ │ ├── Toggle.json │ │ │ │ │ ├── Toggle.min.css │ │ │ │ │ └── Toggle.scss │ │ │ ├── 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 │ │ │ ├── js │ │ │ │ ├── jquery.fabric.js │ │ │ │ └── jquery.fabric.min.js │ │ │ ├── samples │ │ │ │ ├── Components │ │ │ │ │ ├── Breadcrumb │ │ │ │ │ │ ├── Breadcrumb.css │ │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ │ ├── Breadcrumb.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Button │ │ │ │ │ │ ├── Button.css │ │ │ │ │ │ ├── Button.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Callout │ │ │ │ │ │ ├── Callout.css │ │ │ │ │ │ ├── Callout.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ChoiceField │ │ │ │ │ │ ├── ChoiceField.css │ │ │ │ │ │ ├── ChoiceField.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── CommandBar │ │ │ │ │ │ ├── CommandBar.css │ │ │ │ │ │ ├── CommandBar.min.css │ │ │ │ │ │ ├── Jquery.CommandBar.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ContextualMenu │ │ │ │ │ │ ├── ContextualMenu.css │ │ │ │ │ │ ├── ContextualMenu.min.css │ │ │ │ │ │ ├── Jquery.ContextualMenu.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── DatePicker │ │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ │ ├── DatePicker.min.css │ │ │ │ │ │ ├── Jquery.DatePicker.js │ │ │ │ │ │ ├── PickaDate.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Dialog │ │ │ │ │ │ ├── Dialog.css │ │ │ │ │ │ ├── Dialog.min.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jquery.Dialog.js │ │ │ │ │ ├── Dropdown │ │ │ │ │ │ ├── Dropdown.css │ │ │ │ │ │ ├── Dropdown.min.css │ │ │ │ │ │ ├── Jquery.Dropdown.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Facepile │ │ │ │ │ │ ├── Facepile.css │ │ │ │ │ │ ├── Facepile.min.css │ │ │ │ │ │ ├── Jquery.Facepile.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Label │ │ │ │ │ │ ├── Label.css │ │ │ │ │ │ ├── Label.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Link │ │ │ │ │ │ ├── Link.css │ │ │ │ │ │ ├── Link.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── List │ │ │ │ │ │ ├── List.css │ │ │ │ │ │ ├── List.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ListItem │ │ │ │ │ │ ├── Jquery.ListItem.js │ │ │ │ │ │ ├── ListItem.css │ │ │ │ │ │ ├── ListItem.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── MessageBanner │ │ │ │ │ │ ├── MessageBanner.css │ │ │ │ │ │ ├── MessageBanner.js │ │ │ │ │ │ ├── MessageBanner.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── NavBar │ │ │ │ │ │ ├── Jquery.NavBar.js │ │ │ │ │ │ ├── NavBar.css │ │ │ │ │ │ ├── NavBar.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── OrgChart │ │ │ │ │ │ ├── OrgChart.css │ │ │ │ │ │ ├── OrgChart.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Overlay │ │ │ │ │ │ ├── Overlay.css │ │ │ │ │ │ ├── Overlay.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Panel │ │ │ │ │ │ ├── Jquery.Panel.js │ │ │ │ │ │ ├── Panel.css │ │ │ │ │ │ ├── Panel.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── PeoplePicker │ │ │ │ │ │ ├── Jquery.PeoplePicker.js │ │ │ │ │ │ ├── PeoplePicker.Searching.png │ │ │ │ │ │ ├── PeoplePicker.css │ │ │ │ │ │ ├── PeoplePicker.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Persona │ │ │ │ │ │ ├── Persona.Person.jpg │ │ │ │ │ │ ├── Persona.Person2.png │ │ │ │ │ │ ├── Persona.css │ │ │ │ │ │ ├── Persona.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── PersonaCard │ │ │ │ │ │ ├── Jquery.PersonaCard.js │ │ │ │ │ │ ├── PersonaCard.css │ │ │ │ │ │ ├── PersonaCard.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Pivot │ │ │ │ │ │ ├── Pivot.css │ │ │ │ │ │ ├── Pivot.min.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jquery.Pivot.js │ │ │ │ │ ├── ProgressIndicator │ │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ │ ├── ProgressIndicator.js │ │ │ │ │ │ ├── ProgressIndicator.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── SearchBox │ │ │ │ │ │ ├── Jquery.SearchBox.js │ │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ │ ├── SearchBox.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Spinner │ │ │ │ │ │ ├── Spinner.css │ │ │ │ │ │ ├── Spinner.js │ │ │ │ │ │ ├── Spinner.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Table │ │ │ │ │ │ ├── Table.css │ │ │ │ │ │ ├── Table.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── TextField │ │ │ │ │ │ ├── Jquery.TextField.js │ │ │ │ │ │ ├── TextField.css │ │ │ │ │ │ ├── TextField.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ └── Toggle │ │ │ │ │ │ ├── Toggle.css │ │ │ │ │ │ ├── Toggle.min.css │ │ │ │ │ │ └── index.html │ │ │ │ ├── Form │ │ │ │ │ ├── css │ │ │ │ │ │ ├── Form.css │ │ │ │ │ │ └── Form.min.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── sass │ │ │ │ │ │ └── Form.scss │ │ │ │ ├── Icons │ │ │ │ │ └── index.html │ │ │ │ ├── VideoPortal │ │ │ │ │ ├── channel.html │ │ │ │ │ ├── channels.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── VideoPortal.css │ │ │ │ │ │ └── VideoPortal.min.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── player.html │ │ │ │ │ └── sass │ │ │ │ │ │ ├── Base.scss │ │ │ │ │ │ ├── ChannelPage.scss │ │ │ │ │ │ ├── ChannelsPage.scss │ │ │ │ │ │ ├── HomePage.scss │ │ │ │ │ │ ├── NavBar.scss │ │ │ │ │ │ ├── PlayerPage.scss │ │ │ │ │ │ ├── SpotLight.scss │ │ │ │ │ │ ├── Utilities.scss │ │ │ │ │ │ ├── VideoListItem.scss │ │ │ │ │ │ └── VideoPortal.scss │ │ │ │ └── index.html │ │ │ └── sass │ │ │ │ ├── Fabric.Animations.Output.scss │ │ │ │ ├── Fabric.Animations.RTL.Output.scss │ │ │ │ ├── Fabric.Color.Mixins.Output.scss │ │ │ │ ├── Fabric.Components.scss │ │ │ │ ├── Fabric.Grid.Output.scss │ │ │ │ ├── Fabric.Icons.Font.Output.scss │ │ │ │ ├── Fabric.Icons.Output.scss │ │ │ │ ├── Fabric.Icons.RTL.Output.scss │ │ │ │ ├── Fabric.RTL.scss │ │ │ │ ├── Fabric.Responsive.Utilities.Output.scss │ │ │ │ ├── Fabric.Typography.Fonts.Output.scss │ │ │ │ ├── Fabric.Typography.Language.Overrides.Output.scss │ │ │ │ ├── Fabric.Typography.Output.scss │ │ │ │ ├── Fabric.Utilities.Output.scss │ │ │ │ ├── Fabric.scss │ │ │ │ ├── _Fabric.Animations.RTL.scss │ │ │ │ ├── _Fabric.Animations.scss │ │ │ │ ├── _Fabric.Color.Mixins.scss │ │ │ │ ├── _Fabric.Color.Variables.scss │ │ │ │ ├── _Fabric.Common.scss │ │ │ │ ├── _Fabric.Grid.scss │ │ │ │ ├── _Fabric.Icons.scss │ │ │ │ ├── _Fabric.Mixins.scss │ │ │ │ ├── _Fabric.Responsive.Utilities.Variables.scss │ │ │ │ ├── _Fabric.Responsive.Variables.scss │ │ │ │ ├── _Fabric.Typography.Fonts.scss │ │ │ │ ├── _Fabric.Typography.Language.Overrides.scss │ │ │ │ ├── _Fabric.Typography.Variables.scss │ │ │ │ ├── _Fabric.Typography.scss │ │ │ │ ├── _Fabric.Utilities.scss │ │ │ │ ├── _Fabric.ZIndex.Variables.scss │ │ │ │ └── _Office.Color.Variables.scss │ │ │ ├── gulpfile.js │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── components │ │ │ ├── Breadcrumb │ │ │ │ ├── Breadcrumb.html │ │ │ │ ├── Breadcrumb.js │ │ │ │ ├── Breadcrumb.json │ │ │ │ └── Breadcrumb.scss │ │ │ ├── Button │ │ │ │ ├── Button.Command.html │ │ │ │ ├── Button.Compound.html │ │ │ │ ├── Button.Hero.html │ │ │ │ ├── Button.Primary.html │ │ │ │ ├── Button.html │ │ │ │ ├── Button.json │ │ │ │ └── Button.scss │ │ │ ├── Callout │ │ │ │ ├── Callout.ActionText.html │ │ │ │ ├── Callout.Close.html │ │ │ │ ├── Callout.Oobe.html │ │ │ │ ├── Callout.Peek.html │ │ │ │ ├── Callout.html │ │ │ │ ├── Callout.json │ │ │ │ └── Callout.scss │ │ │ ├── ChoiceField │ │ │ │ ├── ChoiceField.Checkbox.Disabled.html │ │ │ │ ├── ChoiceField.Checkbox.Selected.html │ │ │ │ ├── ChoiceField.Checkbox.html │ │ │ │ ├── ChoiceField.ChoiceFieldGroup.html │ │ │ │ ├── ChoiceField.Disabled.html │ │ │ │ ├── ChoiceField.Selected.html │ │ │ │ ├── ChoiceField.html │ │ │ │ ├── ChoiceField.json │ │ │ │ └── ChoiceField.scss │ │ │ ├── CommandBar │ │ │ │ ├── CommandBar.html │ │ │ │ ├── CommandBar.json │ │ │ │ ├── CommandBar.scss │ │ │ │ └── Jquery.CommandBar.js │ │ │ ├── ContextualMenu │ │ │ │ ├── ContextualMenu.Dividers.html │ │ │ │ ├── ContextualMenu.Multiselect.html │ │ │ │ ├── ContextualMenu.SubMenu.html │ │ │ │ ├── ContextualMenu.html │ │ │ │ ├── ContextualMenu.json │ │ │ │ ├── ContextualMenu.scss │ │ │ │ └── Jquery.ContextualMenu.js │ │ │ ├── DatePicker │ │ │ │ ├── DatePicker.html │ │ │ │ ├── DatePicker.json │ │ │ │ ├── DatePicker.scss │ │ │ │ ├── Jquery.DatePicker.js │ │ │ │ └── PickaDate.js │ │ │ ├── Dialog │ │ │ │ ├── Dialog.Blocking.html │ │ │ │ ├── Dialog.Close.html │ │ │ │ ├── Dialog.LgHeader.html │ │ │ │ ├── Dialog.Multiline.html │ │ │ │ ├── Dialog.html │ │ │ │ ├── Dialog.json │ │ │ │ ├── Dialog.scss │ │ │ │ └── jquery.Dialog.js │ │ │ ├── Dropdown │ │ │ │ ├── Dropdown.Disabled.html │ │ │ │ ├── Dropdown.html │ │ │ │ ├── Dropdown.json │ │ │ │ ├── Dropdown.scss │ │ │ │ └── Jquery.Dropdown.js │ │ │ ├── Facepile │ │ │ │ ├── Facepile.html │ │ │ │ ├── Facepile.json │ │ │ │ ├── Facepile.scss │ │ │ │ └── Jquery.Facepile.js │ │ │ ├── Label │ │ │ │ ├── Label.Disabled.html │ │ │ │ ├── Label.Required.html │ │ │ │ ├── Label.html │ │ │ │ ├── Label.json │ │ │ │ └── Label.scss │ │ │ ├── Link │ │ │ │ ├── Link.Hero.html │ │ │ │ ├── Link.html │ │ │ │ ├── Link.json │ │ │ │ └── Link.scss │ │ │ ├── List │ │ │ │ ├── List.Grid.html │ │ │ │ ├── List.html │ │ │ │ ├── List.json │ │ │ │ └── List.scss │ │ │ ├── ListItem │ │ │ │ ├── Jquery.ListItem.js │ │ │ │ ├── ListItem.Document.html │ │ │ │ ├── ListItem.Image.html │ │ │ │ ├── ListItem.Selectable.html │ │ │ │ ├── ListItem.Selected.html │ │ │ │ ├── ListItem.Unread.html │ │ │ │ ├── ListItem.Unseen.html │ │ │ │ ├── ListItem.html │ │ │ │ ├── ListItem.json │ │ │ │ └── ListItem.scss │ │ │ ├── MessageBanner │ │ │ │ ├── MessageBanner.html │ │ │ │ ├── MessageBanner.js │ │ │ │ ├── MessageBanner.json │ │ │ │ └── MessageBanner.scss │ │ │ ├── NavBar │ │ │ │ ├── Jquery.NavBar.js │ │ │ │ ├── NavBar.html │ │ │ │ ├── NavBar.json │ │ │ │ └── NavBar.scss │ │ │ ├── OrgChart │ │ │ │ ├── OrgChart.Square.html │ │ │ │ ├── OrgChart.html │ │ │ │ ├── OrgChart.json │ │ │ │ └── OrgChart.scss │ │ │ ├── Overlay │ │ │ │ ├── Overlay.Dark.html │ │ │ │ ├── Overlay.None.html │ │ │ │ ├── Overlay.html │ │ │ │ ├── Overlay.json │ │ │ │ └── Overlay.scss │ │ │ ├── Panel │ │ │ │ ├── Jquery.Panel.js │ │ │ │ ├── Panel.ExtraLarge.html │ │ │ │ ├── Panel.Large.html │ │ │ │ ├── Panel.Medium.html │ │ │ │ ├── Panel.html │ │ │ │ ├── Panel.json │ │ │ │ └── Panel.scss │ │ │ ├── PeoplePicker │ │ │ │ ├── Jquery.PeoplePicker.js │ │ │ │ ├── PeoplePicker.Compact.html │ │ │ │ ├── PeoplePicker.Disconnected.html │ │ │ │ ├── PeoplePicker.FacePile.html │ │ │ │ ├── PeoplePicker.MembersList.html │ │ │ │ ├── PeoplePicker.Searching.png │ │ │ │ ├── PeoplePicker.html │ │ │ │ ├── PeoplePicker.json │ │ │ │ └── PeoplePicker.scss │ │ │ ├── Persona │ │ │ │ ├── Persona.ExtraLarge.html │ │ │ │ ├── Persona.ExtraSmall.html │ │ │ │ ├── Persona.Initials.html │ │ │ │ ├── Persona.Large.html │ │ │ │ ├── Persona.Person.jpg │ │ │ │ ├── Persona.Person2.png │ │ │ │ ├── Persona.Presence.Available.html │ │ │ │ ├── Persona.Presence.Away.html │ │ │ │ ├── Persona.Presence.Blocked.html │ │ │ │ ├── Persona.Presence.Busy.html │ │ │ │ ├── Persona.Presence.Dnd.html │ │ │ │ ├── Persona.Presence.Offline.html │ │ │ │ ├── Persona.Presence.Square.Available.html │ │ │ │ ├── Persona.Presence.Square.Away.html │ │ │ │ ├── Persona.Presence.Square.Blocked.html │ │ │ │ ├── Persona.Presence.Square.Busy.html │ │ │ │ ├── Persona.Presence.Square.Dnd.html │ │ │ │ ├── Persona.Presence.Square.Offline.html │ │ │ │ ├── Persona.Small.html │ │ │ │ ├── Persona.Square.ExtraLarge.html │ │ │ │ ├── Persona.Square.ExtraSmall.html │ │ │ │ ├── Persona.Square.Large.html │ │ │ │ ├── Persona.Square.Small.html │ │ │ │ ├── Persona.Square.Tiny.html │ │ │ │ ├── Persona.Square.html │ │ │ │ ├── Persona.Tiny.html │ │ │ │ ├── Persona.html │ │ │ │ ├── Persona.json │ │ │ │ └── Persona.scss │ │ │ ├── PersonaCard │ │ │ │ ├── Jquery.PersonaCard.js │ │ │ │ ├── PersonaCard.Square.html │ │ │ │ ├── PersonaCard.html │ │ │ │ ├── PersonaCard.json │ │ │ │ └── PersonaCard.scss │ │ │ ├── Pivot │ │ │ │ ├── Pivot.Large.html │ │ │ │ ├── Pivot.Tabs.Large.html │ │ │ │ ├── Pivot.Tabs.html │ │ │ │ ├── Pivot.html │ │ │ │ ├── Pivot.json │ │ │ │ ├── Pivot.scss │ │ │ │ └── jquery.Pivot.js │ │ │ ├── ProgressIndicator │ │ │ │ ├── ProgressIndicator.html │ │ │ │ ├── ProgressIndicator.js │ │ │ │ ├── ProgressIndicator.json │ │ │ │ └── ProgressIndicator.scss │ │ │ ├── SearchBox │ │ │ │ ├── Jquery.SearchBox.js │ │ │ │ ├── SearchBox.html │ │ │ │ ├── SearchBox.json │ │ │ │ └── SearchBox.scss │ │ │ ├── Spinner │ │ │ │ ├── Spinner.Large.html │ │ │ │ ├── Spinner.Message.Large.html │ │ │ │ ├── Spinner.Message.html │ │ │ │ ├── Spinner.html │ │ │ │ ├── Spinner.js │ │ │ │ ├── Spinner.json │ │ │ │ └── Spinner.scss │ │ │ ├── Table │ │ │ │ ├── Table.html │ │ │ │ ├── Table.json │ │ │ │ └── Table.scss │ │ │ ├── TextField │ │ │ │ ├── Jquery.TextField.js │ │ │ │ ├── TextField.Multiline.html │ │ │ │ ├── TextField.Placeholder.html │ │ │ │ ├── TextField.Underlined.html │ │ │ │ ├── TextField.html │ │ │ │ ├── TextField.json │ │ │ │ └── TextField.scss │ │ │ └── Toggle │ │ │ │ ├── Toggle.TextLeft.html │ │ │ │ ├── Toggle.html │ │ │ │ ├── Toggle.json │ │ │ │ └── Toggle.scss │ │ │ ├── samples │ │ │ ├── Form │ │ │ │ ├── index.html │ │ │ │ └── sass │ │ │ │ │ └── Form.scss │ │ │ ├── Icons │ │ │ │ └── index.html │ │ │ └── VideoPortal │ │ │ │ ├── channel.html │ │ │ │ ├── channels.html │ │ │ │ ├── index.html │ │ │ │ ├── player.html │ │ │ │ └── sass │ │ │ │ ├── Base.scss │ │ │ │ ├── ChannelPage.scss │ │ │ │ ├── ChannelsPage.scss │ │ │ │ ├── HomePage.scss │ │ │ │ ├── NavBar.scss │ │ │ │ ├── PlayerPage.scss │ │ │ │ ├── SpotLight.scss │ │ │ │ ├── Utilities.scss │ │ │ │ ├── VideoListItem.scss │ │ │ │ └── VideoPortal.scss │ │ │ ├── sass │ │ │ ├── Fabric.Animations.Output.scss │ │ │ ├── Fabric.Animations.RTL.Output.scss │ │ │ ├── Fabric.Color.Mixins.Output.scss │ │ │ ├── Fabric.Components.scss │ │ │ ├── Fabric.Grid.Output.scss │ │ │ ├── Fabric.Icons.Font.Output.scss │ │ │ ├── Fabric.Icons.Output.scss │ │ │ ├── Fabric.Icons.RTL.Output.scss │ │ │ ├── Fabric.RTL.scss │ │ │ ├── Fabric.Responsive.Utilities.Output.scss │ │ │ ├── Fabric.Typography.Fonts.Output.scss │ │ │ ├── Fabric.Typography.Language.Overrides.Output.scss │ │ │ ├── Fabric.Typography.Output.scss │ │ │ ├── Fabric.Utilities.Output.scss │ │ │ ├── Fabric.scss │ │ │ ├── _Fabric.Animations.RTL.scss │ │ │ ├── _Fabric.Animations.scss │ │ │ ├── _Fabric.Color.Mixins.scss │ │ │ ├── _Fabric.Color.Variables.scss │ │ │ ├── _Fabric.Common.scss │ │ │ ├── _Fabric.Grid.scss │ │ │ ├── _Fabric.Icons.scss │ │ │ ├── _Fabric.Mixins.scss │ │ │ ├── _Fabric.Responsive.Utilities.Variables.scss │ │ │ ├── _Fabric.Responsive.Variables.scss │ │ │ ├── _Fabric.Typography.Fonts.scss │ │ │ ├── _Fabric.Typography.Language.Overrides.scss │ │ │ ├── _Fabric.Typography.Variables.scss │ │ │ ├── _Fabric.Typography.scss │ │ │ ├── _Fabric.Utilities.scss │ │ │ ├── _Fabric.ZIndex.Variables.scss │ │ │ └── _Office.Color.Variables.scss │ │ │ └── templates │ │ │ ├── component-manifest-template.scss │ │ │ ├── componentSampleTemplate.html │ │ │ ├── individual-component-example.html │ │ │ └── samples-index.html │ │ ├── content │ │ └── Office.css │ │ ├── gulpfile.js │ │ ├── images │ │ └── close.png │ │ ├── jsconfig.json │ │ ├── manifest-contact-cleanup.xml │ │ ├── manifest.xsd │ │ ├── package.json │ │ ├── scripts │ │ └── MicrosoftAjax.js │ │ ├── tsconfig.json │ │ └── tsd.json │ └── Ex3 │ ├── Begin │ └── ContactCleanup │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── app │ │ ├── app.css │ │ ├── app.js │ │ └── home │ │ │ ├── home.css │ │ │ ├── home.html │ │ │ └── home.js │ │ ├── bower.json │ │ ├── bower_components │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── .jshintrc │ │ │ ├── AUTHORS.txt │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── jquery-migrate.js │ │ │ ├── jquery-migrate.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── package.json │ │ │ ├── speed │ │ │ │ ├── benchmark.js │ │ │ │ ├── benchmarker.css │ │ │ │ ├── benchmarker.js │ │ │ │ ├── closest.html │ │ │ │ ├── css.html │ │ │ │ ├── event.html │ │ │ │ ├── filter.html │ │ │ │ ├── find.html │ │ │ │ ├── index.html │ │ │ │ ├── jquery-basis.js │ │ │ │ └── slice.vs.concat.html │ │ │ ├── src │ │ │ │ ├── .jshintrc │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ │ ├── jsonp.js │ │ │ │ │ ├── script.js │ │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── css.js │ │ │ │ ├── data.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── event-alias.js │ │ │ │ ├── event.js │ │ │ │ ├── exports.js │ │ │ │ ├── intro.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── serialize.js │ │ │ │ ├── sizzle-jquery.js │ │ │ │ ├── support.js │ │ │ │ └── traversing.js │ │ │ └── test │ │ │ │ ├── .jshintignore │ │ │ │ ├── .jshintrc │ │ │ │ ├── csp.php │ │ │ │ ├── data │ │ │ │ ├── 1x1.jpg │ │ │ │ ├── ajax │ │ │ │ │ └── unreleasedXHR.html │ │ │ │ ├── atom+xml.php │ │ │ │ ├── badcall.js │ │ │ │ ├── badjson.js │ │ │ │ ├── cleanScript.html │ │ │ │ ├── core │ │ │ │ │ └── cc_on.html │ │ │ │ ├── dashboard.xml │ │ │ │ ├── dimensions │ │ │ │ │ ├── documentLarge.html │ │ │ │ │ └── documentSmall.html │ │ │ │ ├── echoData.php │ │ │ │ ├── echoQuery.php │ │ │ │ ├── errorWithText.php │ │ │ │ ├── etag.php │ │ │ │ ├── evalScript.php │ │ │ │ ├── event │ │ │ │ │ ├── longLoadScript.php │ │ │ │ │ ├── promiseReady.html │ │ │ │ │ └── syncReady.html │ │ │ │ ├── headers.php │ │ │ │ ├── if_modified_since.php │ │ │ │ ├── iframe.html │ │ │ │ ├── jquery-1.8.2.ajax_xhr.min.js │ │ │ │ ├── json.php │ │ │ │ ├── json_obj.js │ │ │ │ ├── jsonp.php │ │ │ │ ├── manipulation │ │ │ │ │ └── iframe-denied.html │ │ │ │ ├── name.html │ │ │ │ ├── name.php │ │ │ │ ├── nocontent.php │ │ │ │ ├── offset │ │ │ │ │ ├── absolute.html │ │ │ │ │ ├── body.html │ │ │ │ │ ├── fixed.html │ │ │ │ │ ├── relative.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── static.html │ │ │ │ │ └── table.html │ │ │ │ ├── params_html.php │ │ │ │ ├── readywaitasset.js │ │ │ │ ├── readywaitloader.js │ │ │ │ ├── script.php │ │ │ │ ├── selector │ │ │ │ │ ├── html5_selector.html │ │ │ │ │ └── sizzle_cache.html │ │ │ │ ├── statusText.php │ │ │ │ ├── support │ │ │ │ │ ├── bodyBackground.html │ │ │ │ │ ├── shrinkWrapBlocks.html │ │ │ │ │ └── testElementCrash.html │ │ │ │ ├── test.html │ │ │ │ ├── test.js │ │ │ │ ├── test.php │ │ │ │ ├── test2.html │ │ │ │ ├── test3.html │ │ │ │ ├── testinit.js │ │ │ │ ├── testrunner.js │ │ │ │ ├── testsuite.css │ │ │ │ ├── text.php │ │ │ │ ├── ua.txt │ │ │ │ ├── with_fries.xml │ │ │ │ └── with_fries_over_jsonp.php │ │ │ │ ├── delegatetest.html │ │ │ │ ├── hovertest.html │ │ │ │ ├── index.html │ │ │ │ ├── localfile.html │ │ │ │ ├── networkerror.html │ │ │ │ ├── polluted.php │ │ │ │ ├── readywait.html │ │ │ │ ├── unit │ │ │ │ ├── ajax.js │ │ │ │ ├── attributes.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── css.js │ │ │ │ ├── data.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── event.js │ │ │ │ ├── exports.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── offset.js │ │ │ │ ├── queue.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── support.js │ │ │ │ └── traversing.js │ │ │ │ └── xhtml.php │ │ ├── microsoft.office.js │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── content │ │ │ │ └── officethemes.css │ │ │ └── scripts │ │ │ │ └── office │ │ │ │ ├── 1 │ │ │ │ ├── access-web-16.00.debug.js │ │ │ │ ├── access-web-16.00.js │ │ │ │ ├── ar-sa │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── bg-bg │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── cs-cz │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── da-dk │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── de-de │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── el-gr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── en-us │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── es-es │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── et-ee │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── excel-15.01.debug.js │ │ │ │ ├── excel-15.01.js │ │ │ │ ├── excel-15.debug.js │ │ │ │ ├── excel-15.js │ │ │ │ ├── excel-ios-16.00.debug.js │ │ │ │ ├── excel-ios-16.00.js │ │ │ │ ├── excel-web-16.00.debug.js │ │ │ │ ├── excel-web-16.00.js │ │ │ │ ├── excel-win32-16.00.debug.js │ │ │ │ ├── excel-win32-16.00.js │ │ │ │ ├── excelios-15.debug.js │ │ │ │ ├── excelios-15.js │ │ │ │ ├── excelwebapp-15.01.debug.js │ │ │ │ ├── excelwebapp-15.01.js │ │ │ │ ├── excelwebapp-15.debug.js │ │ │ │ ├── excelwebapp-15.js │ │ │ │ ├── fi-fi │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── fr-fr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── he-il │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hi-in │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hr-hr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hu-hu │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── id-id │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── it-it │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ja-jp │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── kk-kz │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ko-kr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── lt-lt │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── lv-lv │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ms-my │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── nb-no │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── nl-nl │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── o15apptofilemappingtable.debug.js │ │ │ │ ├── o15apptofilemappingtable.js │ │ │ │ ├── office-vsdoc.js │ │ │ │ ├── office.debug.js │ │ │ │ ├── office.js │ │ │ │ ├── outlook-15.01.debug.js │ │ │ │ ├── outlook-15.01.js │ │ │ │ ├── outlook-15.02.debug.js │ │ │ │ ├── outlook-15.02.js │ │ │ │ ├── outlook-15.debug.js │ │ │ │ ├── outlook-15.js │ │ │ │ ├── outlook-web-16.00.debug.js │ │ │ │ ├── outlook-web-16.00.js │ │ │ │ ├── outlook-win32-16.00.debug.js │ │ │ │ ├── outlook-win32-16.00.js │ │ │ │ ├── outlook-win32.debug-vsdoc.js │ │ │ │ ├── outlookwebapp-15.01.debug.js │ │ │ │ ├── outlookwebapp-15.01.js │ │ │ │ ├── outlookwebapp-15.debug.js │ │ │ │ ├── outlookwebapp-15.js │ │ │ │ ├── pl-pl │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── powerpoint-15.01.debug.js │ │ │ │ ├── powerpoint-15.01.js │ │ │ │ ├── powerpoint-15.debug.js │ │ │ │ ├── powerpoint-15.js │ │ │ │ ├── powerpoint-ios-16.00.debug.js │ │ │ │ ├── powerpoint-ios-16.00.js │ │ │ │ ├── powerpoint-web-16.00.debug.js │ │ │ │ ├── powerpoint-web-16.00.js │ │ │ │ ├── powerpoint-win32-16.00.debug.js │ │ │ │ ├── powerpoint-win32-16.00.js │ │ │ │ ├── powerpointios-15.debug.js │ │ │ │ ├── powerpointios-15.js │ │ │ │ ├── project-15.01.debug.js │ │ │ │ ├── project-15.01.js │ │ │ │ ├── project-15.debug.js │ │ │ │ ├── project-15.js │ │ │ │ ├── project-win32-16.00.debug.js │ │ │ │ ├── project-win32-16.00.js │ │ │ │ ├── pt-br │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ro-ro │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ru-ru │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sk-sk │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sl-si │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sr-latn-cs │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sv-se │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── th-th │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── tr-tr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── uk-ua │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── vi-vn │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── word-15.01.debug.js │ │ │ │ ├── word-15.01.js │ │ │ │ ├── word-15.debug.js │ │ │ │ ├── word-15.js │ │ │ │ ├── word-ios-16.00.debug.js │ │ │ │ ├── word-ios-16.00.js │ │ │ │ ├── word-web-16.00.debug.js │ │ │ │ ├── word-web-16.00.js │ │ │ │ ├── word-win32-16.00.debug.js │ │ │ │ ├── word-win32-16.00.js │ │ │ │ ├── wordios-15.debug.js │ │ │ │ ├── wordios-15.js │ │ │ │ ├── zh-cn │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ └── zh-tw │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ └── metadata │ │ │ │ ├── endpoints.xml │ │ │ │ └── features.xml │ │ └── office-ui-fabric │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Third Party Notices.txt │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ ├── components │ │ │ │ ├── Breadcrumb │ │ │ │ │ ├── Breadcrumb.css │ │ │ │ │ ├── Breadcrumb.html │ │ │ │ │ ├── Breadcrumb.json │ │ │ │ │ ├── Breadcrumb.min.css │ │ │ │ │ └── Breadcrumb.scss │ │ │ │ ├── Button │ │ │ │ │ ├── Button.Command.html │ │ │ │ │ ├── Button.Compound.html │ │ │ │ │ ├── Button.Hero.html │ │ │ │ │ ├── Button.Primary.html │ │ │ │ │ ├── Button.css │ │ │ │ │ ├── Button.html │ │ │ │ │ ├── Button.json │ │ │ │ │ ├── Button.min.css │ │ │ │ │ └── Button.scss │ │ │ │ ├── Callout │ │ │ │ │ ├── Callout.ActionText.html │ │ │ │ │ ├── Callout.Close.html │ │ │ │ │ ├── Callout.Oobe.html │ │ │ │ │ ├── Callout.Peek.html │ │ │ │ │ ├── Callout.css │ │ │ │ │ ├── Callout.html │ │ │ │ │ ├── Callout.json │ │ │ │ │ ├── Callout.min.css │ │ │ │ │ └── Callout.scss │ │ │ │ ├── ChoiceField │ │ │ │ │ ├── ChoiceField.Checkbox.Disabled.html │ │ │ │ │ ├── ChoiceField.Checkbox.Selected.html │ │ │ │ │ ├── ChoiceField.Checkbox.html │ │ │ │ │ ├── ChoiceField.ChoiceFieldGroup.html │ │ │ │ │ ├── ChoiceField.Disabled.html │ │ │ │ │ ├── ChoiceField.Selected.html │ │ │ │ │ ├── ChoiceField.css │ │ │ │ │ ├── ChoiceField.html │ │ │ │ │ ├── ChoiceField.json │ │ │ │ │ ├── ChoiceField.min.css │ │ │ │ │ └── ChoiceField.scss │ │ │ │ ├── CommandBar │ │ │ │ │ ├── CommandBar.css │ │ │ │ │ ├── CommandBar.html │ │ │ │ │ ├── CommandBar.json │ │ │ │ │ ├── CommandBar.min.css │ │ │ │ │ └── CommandBar.scss │ │ │ │ ├── ContextualMenu │ │ │ │ │ ├── ContextualMenu.Dividers.html │ │ │ │ │ ├── ContextualMenu.Multiselect.html │ │ │ │ │ ├── ContextualMenu.SubMenu.html │ │ │ │ │ ├── ContextualMenu.css │ │ │ │ │ ├── ContextualMenu.html │ │ │ │ │ ├── ContextualMenu.json │ │ │ │ │ ├── ContextualMenu.min.css │ │ │ │ │ └── ContextualMenu.scss │ │ │ │ ├── DatePicker │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ ├── DatePicker.html │ │ │ │ │ ├── DatePicker.json │ │ │ │ │ ├── DatePicker.min.css │ │ │ │ │ └── DatePicker.scss │ │ │ │ ├── Dialog │ │ │ │ │ ├── Dialog.Blocking.html │ │ │ │ │ ├── Dialog.Close.html │ │ │ │ │ ├── Dialog.LgHeader.html │ │ │ │ │ ├── Dialog.Multiline.html │ │ │ │ │ ├── Dialog.css │ │ │ │ │ ├── Dialog.html │ │ │ │ │ ├── Dialog.json │ │ │ │ │ ├── Dialog.min.css │ │ │ │ │ └── Dialog.scss │ │ │ │ ├── Dropdown │ │ │ │ │ ├── Dropdown.Disabled.html │ │ │ │ │ ├── Dropdown.css │ │ │ │ │ ├── Dropdown.html │ │ │ │ │ ├── Dropdown.json │ │ │ │ │ ├── Dropdown.min.css │ │ │ │ │ └── Dropdown.scss │ │ │ │ ├── Facepile │ │ │ │ │ ├── Facepile.css │ │ │ │ │ ├── Facepile.html │ │ │ │ │ ├── Facepile.json │ │ │ │ │ ├── Facepile.min.css │ │ │ │ │ └── Facepile.scss │ │ │ │ ├── Label │ │ │ │ │ ├── Label.Disabled.html │ │ │ │ │ ├── Label.Required.html │ │ │ │ │ ├── Label.css │ │ │ │ │ ├── Label.html │ │ │ │ │ ├── Label.json │ │ │ │ │ ├── Label.min.css │ │ │ │ │ └── Label.scss │ │ │ │ ├── Link │ │ │ │ │ ├── Link.Hero.html │ │ │ │ │ ├── Link.css │ │ │ │ │ ├── Link.html │ │ │ │ │ ├── Link.json │ │ │ │ │ ├── Link.min.css │ │ │ │ │ └── Link.scss │ │ │ │ ├── List │ │ │ │ │ ├── List.Grid.html │ │ │ │ │ ├── List.css │ │ │ │ │ ├── List.html │ │ │ │ │ ├── List.json │ │ │ │ │ ├── List.min.css │ │ │ │ │ └── List.scss │ │ │ │ ├── ListItem │ │ │ │ │ ├── ListItem.Document.html │ │ │ │ │ ├── ListItem.Image.html │ │ │ │ │ ├── ListItem.Selectable.html │ │ │ │ │ ├── ListItem.Selected.html │ │ │ │ │ ├── ListItem.Unread.html │ │ │ │ │ ├── ListItem.Unseen.html │ │ │ │ │ ├── ListItem.css │ │ │ │ │ ├── ListItem.html │ │ │ │ │ ├── ListItem.json │ │ │ │ │ ├── ListItem.min.css │ │ │ │ │ └── ListItem.scss │ │ │ │ ├── MessageBanner │ │ │ │ │ ├── MessageBanner.css │ │ │ │ │ ├── MessageBanner.html │ │ │ │ │ ├── MessageBanner.json │ │ │ │ │ ├── MessageBanner.min.css │ │ │ │ │ └── MessageBanner.scss │ │ │ │ ├── NavBar │ │ │ │ │ ├── NavBar.css │ │ │ │ │ ├── NavBar.html │ │ │ │ │ ├── NavBar.json │ │ │ │ │ ├── NavBar.min.css │ │ │ │ │ └── NavBar.scss │ │ │ │ ├── OrgChart │ │ │ │ │ ├── OrgChart.Square.html │ │ │ │ │ ├── OrgChart.css │ │ │ │ │ ├── OrgChart.html │ │ │ │ │ ├── OrgChart.json │ │ │ │ │ ├── OrgChart.min.css │ │ │ │ │ └── OrgChart.scss │ │ │ │ ├── Overlay │ │ │ │ │ ├── Overlay.Dark.html │ │ │ │ │ ├── Overlay.None.html │ │ │ │ │ ├── Overlay.css │ │ │ │ │ ├── Overlay.html │ │ │ │ │ ├── Overlay.json │ │ │ │ │ ├── Overlay.min.css │ │ │ │ │ └── Overlay.scss │ │ │ │ ├── Panel │ │ │ │ │ ├── Panel.ExtraLarge.html │ │ │ │ │ ├── Panel.Large.html │ │ │ │ │ ├── Panel.Medium.html │ │ │ │ │ ├── Panel.css │ │ │ │ │ ├── Panel.html │ │ │ │ │ ├── Panel.json │ │ │ │ │ ├── Panel.min.css │ │ │ │ │ └── Panel.scss │ │ │ │ ├── PeoplePicker │ │ │ │ │ ├── PeoplePicker.Compact.html │ │ │ │ │ ├── PeoplePicker.Disconnected.html │ │ │ │ │ ├── PeoplePicker.FacePile.html │ │ │ │ │ ├── PeoplePicker.MembersList.html │ │ │ │ │ ├── PeoplePicker.Searching.png │ │ │ │ │ ├── PeoplePicker.css │ │ │ │ │ ├── PeoplePicker.html │ │ │ │ │ ├── PeoplePicker.json │ │ │ │ │ ├── PeoplePicker.min.css │ │ │ │ │ └── PeoplePicker.scss │ │ │ │ ├── Persona │ │ │ │ │ ├── Persona.ExtraLarge.html │ │ │ │ │ ├── Persona.ExtraSmall.html │ │ │ │ │ ├── Persona.Initials.html │ │ │ │ │ ├── Persona.Large.html │ │ │ │ │ ├── Persona.Person.jpg │ │ │ │ │ ├── Persona.Person2.png │ │ │ │ │ ├── Persona.Presence.Available.html │ │ │ │ │ ├── Persona.Presence.Away.html │ │ │ │ │ ├── Persona.Presence.Blocked.html │ │ │ │ │ ├── Persona.Presence.Busy.html │ │ │ │ │ ├── Persona.Presence.Dnd.html │ │ │ │ │ ├── Persona.Presence.Offline.html │ │ │ │ │ ├── Persona.Presence.Square.Available.html │ │ │ │ │ ├── Persona.Presence.Square.Away.html │ │ │ │ │ ├── Persona.Presence.Square.Blocked.html │ │ │ │ │ ├── Persona.Presence.Square.Busy.html │ │ │ │ │ ├── Persona.Presence.Square.Dnd.html │ │ │ │ │ ├── Persona.Presence.Square.Offline.html │ │ │ │ │ ├── Persona.Small.html │ │ │ │ │ ├── Persona.Square.ExtraLarge.html │ │ │ │ │ ├── Persona.Square.ExtraSmall.html │ │ │ │ │ ├── Persona.Square.Large.html │ │ │ │ │ ├── Persona.Square.Small.html │ │ │ │ │ ├── Persona.Square.Tiny.html │ │ │ │ │ ├── Persona.Square.html │ │ │ │ │ ├── Persona.Tiny.html │ │ │ │ │ ├── Persona.css │ │ │ │ │ ├── Persona.html │ │ │ │ │ ├── Persona.json │ │ │ │ │ ├── Persona.min.css │ │ │ │ │ └── Persona.scss │ │ │ │ ├── PersonaCard │ │ │ │ │ ├── PersonaCard.Square.html │ │ │ │ │ ├── PersonaCard.css │ │ │ │ │ ├── PersonaCard.html │ │ │ │ │ ├── PersonaCard.json │ │ │ │ │ ├── PersonaCard.min.css │ │ │ │ │ └── PersonaCard.scss │ │ │ │ ├── Pivot │ │ │ │ │ ├── Pivot.Large.html │ │ │ │ │ ├── Pivot.Tabs.Large.html │ │ │ │ │ ├── Pivot.Tabs.html │ │ │ │ │ ├── Pivot.css │ │ │ │ │ ├── Pivot.html │ │ │ │ │ ├── Pivot.json │ │ │ │ │ ├── Pivot.min.css │ │ │ │ │ └── Pivot.scss │ │ │ │ ├── ProgressIndicator │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ ├── ProgressIndicator.html │ │ │ │ │ ├── ProgressIndicator.json │ │ │ │ │ ├── ProgressIndicator.min.css │ │ │ │ │ └── ProgressIndicator.scss │ │ │ │ ├── SearchBox │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ ├── SearchBox.html │ │ │ │ │ ├── SearchBox.json │ │ │ │ │ ├── SearchBox.min.css │ │ │ │ │ └── SearchBox.scss │ │ │ │ ├── Spinner │ │ │ │ │ ├── Spinner.Large.html │ │ │ │ │ ├── Spinner.Message.Large.html │ │ │ │ │ ├── Spinner.Message.html │ │ │ │ │ ├── Spinner.css │ │ │ │ │ ├── Spinner.html │ │ │ │ │ ├── Spinner.json │ │ │ │ │ ├── Spinner.min.css │ │ │ │ │ └── Spinner.scss │ │ │ │ ├── Table │ │ │ │ │ ├── Table.css │ │ │ │ │ ├── Table.html │ │ │ │ │ ├── Table.json │ │ │ │ │ ├── Table.min.css │ │ │ │ │ └── Table.scss │ │ │ │ ├── TextField │ │ │ │ │ ├── TextField.Multiline.html │ │ │ │ │ ├── TextField.Placeholder.html │ │ │ │ │ ├── TextField.Underlined.html │ │ │ │ │ ├── TextField.css │ │ │ │ │ ├── TextField.html │ │ │ │ │ ├── TextField.json │ │ │ │ │ ├── TextField.min.css │ │ │ │ │ └── TextField.scss │ │ │ │ └── Toggle │ │ │ │ │ ├── Toggle.TextLeft.html │ │ │ │ │ ├── Toggle.css │ │ │ │ │ ├── Toggle.html │ │ │ │ │ ├── Toggle.json │ │ │ │ │ ├── Toggle.min.css │ │ │ │ │ └── Toggle.scss │ │ │ ├── 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 │ │ │ ├── js │ │ │ │ ├── jquery.fabric.js │ │ │ │ └── jquery.fabric.min.js │ │ │ ├── samples │ │ │ │ ├── Components │ │ │ │ │ ├── Breadcrumb │ │ │ │ │ │ ├── Breadcrumb.css │ │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ │ ├── Breadcrumb.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Button │ │ │ │ │ │ ├── Button.css │ │ │ │ │ │ ├── Button.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Callout │ │ │ │ │ │ ├── Callout.css │ │ │ │ │ │ ├── Callout.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ChoiceField │ │ │ │ │ │ ├── ChoiceField.css │ │ │ │ │ │ ├── ChoiceField.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── CommandBar │ │ │ │ │ │ ├── CommandBar.css │ │ │ │ │ │ ├── CommandBar.min.css │ │ │ │ │ │ ├── Jquery.CommandBar.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ContextualMenu │ │ │ │ │ │ ├── ContextualMenu.css │ │ │ │ │ │ ├── ContextualMenu.min.css │ │ │ │ │ │ ├── Jquery.ContextualMenu.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── DatePicker │ │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ │ ├── DatePicker.min.css │ │ │ │ │ │ ├── Jquery.DatePicker.js │ │ │ │ │ │ ├── PickaDate.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Dialog │ │ │ │ │ │ ├── Dialog.css │ │ │ │ │ │ ├── Dialog.min.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jquery.Dialog.js │ │ │ │ │ ├── Dropdown │ │ │ │ │ │ ├── Dropdown.css │ │ │ │ │ │ ├── Dropdown.min.css │ │ │ │ │ │ ├── Jquery.Dropdown.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Facepile │ │ │ │ │ │ ├── Facepile.css │ │ │ │ │ │ ├── Facepile.min.css │ │ │ │ │ │ ├── Jquery.Facepile.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Label │ │ │ │ │ │ ├── Label.css │ │ │ │ │ │ ├── Label.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Link │ │ │ │ │ │ ├── Link.css │ │ │ │ │ │ ├── Link.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── List │ │ │ │ │ │ ├── List.css │ │ │ │ │ │ ├── List.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ListItem │ │ │ │ │ │ ├── Jquery.ListItem.js │ │ │ │ │ │ ├── ListItem.css │ │ │ │ │ │ ├── ListItem.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── MessageBanner │ │ │ │ │ │ ├── MessageBanner.css │ │ │ │ │ │ ├── MessageBanner.js │ │ │ │ │ │ ├── MessageBanner.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── NavBar │ │ │ │ │ │ ├── Jquery.NavBar.js │ │ │ │ │ │ ├── NavBar.css │ │ │ │ │ │ ├── NavBar.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── OrgChart │ │ │ │ │ │ ├── OrgChart.css │ │ │ │ │ │ ├── OrgChart.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Overlay │ │ │ │ │ │ ├── Overlay.css │ │ │ │ │ │ ├── Overlay.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Panel │ │ │ │ │ │ ├── Jquery.Panel.js │ │ │ │ │ │ ├── Panel.css │ │ │ │ │ │ ├── Panel.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── PeoplePicker │ │ │ │ │ │ ├── Jquery.PeoplePicker.js │ │ │ │ │ │ ├── PeoplePicker.Searching.png │ │ │ │ │ │ ├── PeoplePicker.css │ │ │ │ │ │ ├── PeoplePicker.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Persona │ │ │ │ │ │ ├── Persona.Person.jpg │ │ │ │ │ │ ├── Persona.Person2.png │ │ │ │ │ │ ├── Persona.css │ │ │ │ │ │ ├── Persona.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── PersonaCard │ │ │ │ │ │ ├── Jquery.PersonaCard.js │ │ │ │ │ │ ├── PersonaCard.css │ │ │ │ │ │ ├── PersonaCard.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Pivot │ │ │ │ │ │ ├── Pivot.css │ │ │ │ │ │ ├── Pivot.min.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jquery.Pivot.js │ │ │ │ │ ├── ProgressIndicator │ │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ │ ├── ProgressIndicator.js │ │ │ │ │ │ ├── ProgressIndicator.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── SearchBox │ │ │ │ │ │ ├── Jquery.SearchBox.js │ │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ │ ├── SearchBox.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Spinner │ │ │ │ │ │ ├── Spinner.css │ │ │ │ │ │ ├── Spinner.js │ │ │ │ │ │ ├── Spinner.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Table │ │ │ │ │ │ ├── Table.css │ │ │ │ │ │ ├── Table.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── TextField │ │ │ │ │ │ ├── Jquery.TextField.js │ │ │ │ │ │ ├── TextField.css │ │ │ │ │ │ ├── TextField.min.css │ │ │ │ │ │ └── index.html │ │ │ │ │ └── Toggle │ │ │ │ │ │ ├── Toggle.css │ │ │ │ │ │ ├── Toggle.min.css │ │ │ │ │ │ └── index.html │ │ │ │ ├── Form │ │ │ │ │ ├── css │ │ │ │ │ │ ├── Form.css │ │ │ │ │ │ └── Form.min.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── sass │ │ │ │ │ │ └── Form.scss │ │ │ │ ├── Icons │ │ │ │ │ └── index.html │ │ │ │ ├── VideoPortal │ │ │ │ │ ├── channel.html │ │ │ │ │ ├── channels.html │ │ │ │ │ ├── css │ │ │ │ │ │ ├── VideoPortal.css │ │ │ │ │ │ └── VideoPortal.min.css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── player.html │ │ │ │ │ └── sass │ │ │ │ │ │ ├── Base.scss │ │ │ │ │ │ ├── ChannelPage.scss │ │ │ │ │ │ ├── ChannelsPage.scss │ │ │ │ │ │ ├── HomePage.scss │ │ │ │ │ │ ├── NavBar.scss │ │ │ │ │ │ ├── PlayerPage.scss │ │ │ │ │ │ ├── SpotLight.scss │ │ │ │ │ │ ├── Utilities.scss │ │ │ │ │ │ ├── VideoListItem.scss │ │ │ │ │ │ └── VideoPortal.scss │ │ │ │ └── index.html │ │ │ └── sass │ │ │ │ ├── Fabric.Animations.Output.scss │ │ │ │ ├── Fabric.Animations.RTL.Output.scss │ │ │ │ ├── Fabric.Color.Mixins.Output.scss │ │ │ │ ├── Fabric.Components.scss │ │ │ │ ├── Fabric.Grid.Output.scss │ │ │ │ ├── Fabric.Icons.Font.Output.scss │ │ │ │ ├── Fabric.Icons.Output.scss │ │ │ │ ├── Fabric.Icons.RTL.Output.scss │ │ │ │ ├── Fabric.RTL.scss │ │ │ │ ├── Fabric.Responsive.Utilities.Output.scss │ │ │ │ ├── Fabric.Typography.Fonts.Output.scss │ │ │ │ ├── Fabric.Typography.Language.Overrides.Output.scss │ │ │ │ ├── Fabric.Typography.Output.scss │ │ │ │ ├── Fabric.Utilities.Output.scss │ │ │ │ ├── Fabric.scss │ │ │ │ ├── _Fabric.Animations.RTL.scss │ │ │ │ ├── _Fabric.Animations.scss │ │ │ │ ├── _Fabric.Color.Mixins.scss │ │ │ │ ├── _Fabric.Color.Variables.scss │ │ │ │ ├── _Fabric.Common.scss │ │ │ │ ├── _Fabric.Grid.scss │ │ │ │ ├── _Fabric.Icons.scss │ │ │ │ ├── _Fabric.Mixins.scss │ │ │ │ ├── _Fabric.Responsive.Utilities.Variables.scss │ │ │ │ ├── _Fabric.Responsive.Variables.scss │ │ │ │ ├── _Fabric.Typography.Fonts.scss │ │ │ │ ├── _Fabric.Typography.Language.Overrides.scss │ │ │ │ ├── _Fabric.Typography.Variables.scss │ │ │ │ ├── _Fabric.Typography.scss │ │ │ │ ├── _Fabric.Utilities.scss │ │ │ │ ├── _Fabric.ZIndex.Variables.scss │ │ │ │ └── _Office.Color.Variables.scss │ │ │ ├── gulpfile.js │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── components │ │ │ ├── Breadcrumb │ │ │ │ ├── Breadcrumb.html │ │ │ │ ├── Breadcrumb.js │ │ │ │ ├── Breadcrumb.json │ │ │ │ └── Breadcrumb.scss │ │ │ ├── Button │ │ │ │ ├── Button.Command.html │ │ │ │ ├── Button.Compound.html │ │ │ │ ├── Button.Hero.html │ │ │ │ ├── Button.Primary.html │ │ │ │ ├── Button.html │ │ │ │ ├── Button.json │ │ │ │ └── Button.scss │ │ │ ├── Callout │ │ │ │ ├── Callout.ActionText.html │ │ │ │ ├── Callout.Close.html │ │ │ │ ├── Callout.Oobe.html │ │ │ │ ├── Callout.Peek.html │ │ │ │ ├── Callout.html │ │ │ │ ├── Callout.json │ │ │ │ └── Callout.scss │ │ │ ├── ChoiceField │ │ │ │ ├── ChoiceField.Checkbox.Disabled.html │ │ │ │ ├── ChoiceField.Checkbox.Selected.html │ │ │ │ ├── ChoiceField.Checkbox.html │ │ │ │ ├── ChoiceField.ChoiceFieldGroup.html │ │ │ │ ├── ChoiceField.Disabled.html │ │ │ │ ├── ChoiceField.Selected.html │ │ │ │ ├── ChoiceField.html │ │ │ │ ├── ChoiceField.json │ │ │ │ └── ChoiceField.scss │ │ │ ├── CommandBar │ │ │ │ ├── CommandBar.html │ │ │ │ ├── CommandBar.json │ │ │ │ ├── CommandBar.scss │ │ │ │ └── Jquery.CommandBar.js │ │ │ ├── ContextualMenu │ │ │ │ ├── ContextualMenu.Dividers.html │ │ │ │ ├── ContextualMenu.Multiselect.html │ │ │ │ ├── ContextualMenu.SubMenu.html │ │ │ │ ├── ContextualMenu.html │ │ │ │ ├── ContextualMenu.json │ │ │ │ ├── ContextualMenu.scss │ │ │ │ └── Jquery.ContextualMenu.js │ │ │ ├── DatePicker │ │ │ │ ├── DatePicker.html │ │ │ │ ├── DatePicker.json │ │ │ │ ├── DatePicker.scss │ │ │ │ ├── Jquery.DatePicker.js │ │ │ │ └── PickaDate.js │ │ │ ├── Dialog │ │ │ │ ├── Dialog.Blocking.html │ │ │ │ ├── Dialog.Close.html │ │ │ │ ├── Dialog.LgHeader.html │ │ │ │ ├── Dialog.Multiline.html │ │ │ │ ├── Dialog.html │ │ │ │ ├── Dialog.json │ │ │ │ ├── Dialog.scss │ │ │ │ └── jquery.Dialog.js │ │ │ ├── Dropdown │ │ │ │ ├── Dropdown.Disabled.html │ │ │ │ ├── Dropdown.html │ │ │ │ ├── Dropdown.json │ │ │ │ ├── Dropdown.scss │ │ │ │ └── Jquery.Dropdown.js │ │ │ ├── Facepile │ │ │ │ ├── Facepile.html │ │ │ │ ├── Facepile.json │ │ │ │ ├── Facepile.scss │ │ │ │ └── Jquery.Facepile.js │ │ │ ├── Label │ │ │ │ ├── Label.Disabled.html │ │ │ │ ├── Label.Required.html │ │ │ │ ├── Label.html │ │ │ │ ├── Label.json │ │ │ │ └── Label.scss │ │ │ ├── Link │ │ │ │ ├── Link.Hero.html │ │ │ │ ├── Link.html │ │ │ │ ├── Link.json │ │ │ │ └── Link.scss │ │ │ ├── List │ │ │ │ ├── List.Grid.html │ │ │ │ ├── List.html │ │ │ │ ├── List.json │ │ │ │ └── List.scss │ │ │ ├── ListItem │ │ │ │ ├── Jquery.ListItem.js │ │ │ │ ├── ListItem.Document.html │ │ │ │ ├── ListItem.Image.html │ │ │ │ ├── ListItem.Selectable.html │ │ │ │ ├── ListItem.Selected.html │ │ │ │ ├── ListItem.Unread.html │ │ │ │ ├── ListItem.Unseen.html │ │ │ │ ├── ListItem.html │ │ │ │ ├── ListItem.json │ │ │ │ └── ListItem.scss │ │ │ ├── MessageBanner │ │ │ │ ├── MessageBanner.html │ │ │ │ ├── MessageBanner.js │ │ │ │ ├── MessageBanner.json │ │ │ │ └── MessageBanner.scss │ │ │ ├── NavBar │ │ │ │ ├── Jquery.NavBar.js │ │ │ │ ├── NavBar.html │ │ │ │ ├── NavBar.json │ │ │ │ └── NavBar.scss │ │ │ ├── OrgChart │ │ │ │ ├── OrgChart.Square.html │ │ │ │ ├── OrgChart.html │ │ │ │ ├── OrgChart.json │ │ │ │ └── OrgChart.scss │ │ │ ├── Overlay │ │ │ │ ├── Overlay.Dark.html │ │ │ │ ├── Overlay.None.html │ │ │ │ ├── Overlay.html │ │ │ │ ├── Overlay.json │ │ │ │ └── Overlay.scss │ │ │ ├── Panel │ │ │ │ ├── Jquery.Panel.js │ │ │ │ ├── Panel.ExtraLarge.html │ │ │ │ ├── Panel.Large.html │ │ │ │ ├── Panel.Medium.html │ │ │ │ ├── Panel.html │ │ │ │ ├── Panel.json │ │ │ │ └── Panel.scss │ │ │ ├── PeoplePicker │ │ │ │ ├── Jquery.PeoplePicker.js │ │ │ │ ├── PeoplePicker.Compact.html │ │ │ │ ├── PeoplePicker.Disconnected.html │ │ │ │ ├── PeoplePicker.FacePile.html │ │ │ │ ├── PeoplePicker.MembersList.html │ │ │ │ ├── PeoplePicker.Searching.png │ │ │ │ ├── PeoplePicker.html │ │ │ │ ├── PeoplePicker.json │ │ │ │ └── PeoplePicker.scss │ │ │ ├── Persona │ │ │ │ ├── Persona.ExtraLarge.html │ │ │ │ ├── Persona.ExtraSmall.html │ │ │ │ ├── Persona.Initials.html │ │ │ │ ├── Persona.Large.html │ │ │ │ ├── Persona.Person.jpg │ │ │ │ ├── Persona.Person2.png │ │ │ │ ├── Persona.Presence.Available.html │ │ │ │ ├── Persona.Presence.Away.html │ │ │ │ ├── Persona.Presence.Blocked.html │ │ │ │ ├── Persona.Presence.Busy.html │ │ │ │ ├── Persona.Presence.Dnd.html │ │ │ │ ├── Persona.Presence.Offline.html │ │ │ │ ├── Persona.Presence.Square.Available.html │ │ │ │ ├── Persona.Presence.Square.Away.html │ │ │ │ ├── Persona.Presence.Square.Blocked.html │ │ │ │ ├── Persona.Presence.Square.Busy.html │ │ │ │ ├── Persona.Presence.Square.Dnd.html │ │ │ │ ├── Persona.Presence.Square.Offline.html │ │ │ │ ├── Persona.Small.html │ │ │ │ ├── Persona.Square.ExtraLarge.html │ │ │ │ ├── Persona.Square.ExtraSmall.html │ │ │ │ ├── Persona.Square.Large.html │ │ │ │ ├── Persona.Square.Small.html │ │ │ │ ├── Persona.Square.Tiny.html │ │ │ │ ├── Persona.Square.html │ │ │ │ ├── Persona.Tiny.html │ │ │ │ ├── Persona.html │ │ │ │ ├── Persona.json │ │ │ │ └── Persona.scss │ │ │ ├── PersonaCard │ │ │ │ ├── Jquery.PersonaCard.js │ │ │ │ ├── PersonaCard.Square.html │ │ │ │ ├── PersonaCard.html │ │ │ │ ├── PersonaCard.json │ │ │ │ └── PersonaCard.scss │ │ │ ├── Pivot │ │ │ │ ├── Pivot.Large.html │ │ │ │ ├── Pivot.Tabs.Large.html │ │ │ │ ├── Pivot.Tabs.html │ │ │ │ ├── Pivot.html │ │ │ │ ├── Pivot.json │ │ │ │ ├── Pivot.scss │ │ │ │ └── jquery.Pivot.js │ │ │ ├── ProgressIndicator │ │ │ │ ├── ProgressIndicator.html │ │ │ │ ├── ProgressIndicator.js │ │ │ │ ├── ProgressIndicator.json │ │ │ │ └── ProgressIndicator.scss │ │ │ ├── SearchBox │ │ │ │ ├── Jquery.SearchBox.js │ │ │ │ ├── SearchBox.html │ │ │ │ ├── SearchBox.json │ │ │ │ └── SearchBox.scss │ │ │ ├── Spinner │ │ │ │ ├── Spinner.Large.html │ │ │ │ ├── Spinner.Message.Large.html │ │ │ │ ├── Spinner.Message.html │ │ │ │ ├── Spinner.html │ │ │ │ ├── Spinner.js │ │ │ │ ├── Spinner.json │ │ │ │ └── Spinner.scss │ │ │ ├── Table │ │ │ │ ├── Table.html │ │ │ │ ├── Table.json │ │ │ │ └── Table.scss │ │ │ ├── TextField │ │ │ │ ├── Jquery.TextField.js │ │ │ │ ├── TextField.Multiline.html │ │ │ │ ├── TextField.Placeholder.html │ │ │ │ ├── TextField.Underlined.html │ │ │ │ ├── TextField.html │ │ │ │ ├── TextField.json │ │ │ │ └── TextField.scss │ │ │ └── Toggle │ │ │ │ ├── Toggle.TextLeft.html │ │ │ │ ├── Toggle.html │ │ │ │ ├── Toggle.json │ │ │ │ └── Toggle.scss │ │ │ ├── samples │ │ │ ├── Form │ │ │ │ ├── index.html │ │ │ │ └── sass │ │ │ │ │ └── Form.scss │ │ │ ├── Icons │ │ │ │ └── index.html │ │ │ └── VideoPortal │ │ │ │ ├── channel.html │ │ │ │ ├── channels.html │ │ │ │ ├── index.html │ │ │ │ ├── player.html │ │ │ │ └── sass │ │ │ │ ├── Base.scss │ │ │ │ ├── ChannelPage.scss │ │ │ │ ├── ChannelsPage.scss │ │ │ │ ├── HomePage.scss │ │ │ │ ├── NavBar.scss │ │ │ │ ├── PlayerPage.scss │ │ │ │ ├── SpotLight.scss │ │ │ │ ├── Utilities.scss │ │ │ │ ├── VideoListItem.scss │ │ │ │ └── VideoPortal.scss │ │ │ ├── sass │ │ │ ├── Fabric.Animations.Output.scss │ │ │ ├── Fabric.Animations.RTL.Output.scss │ │ │ ├── Fabric.Color.Mixins.Output.scss │ │ │ ├── Fabric.Components.scss │ │ │ ├── Fabric.Grid.Output.scss │ │ │ ├── Fabric.Icons.Font.Output.scss │ │ │ ├── Fabric.Icons.Output.scss │ │ │ ├── Fabric.Icons.RTL.Output.scss │ │ │ ├── Fabric.RTL.scss │ │ │ ├── Fabric.Responsive.Utilities.Output.scss │ │ │ ├── Fabric.Typography.Fonts.Output.scss │ │ │ ├── Fabric.Typography.Language.Overrides.Output.scss │ │ │ ├── Fabric.Typography.Output.scss │ │ │ ├── Fabric.Utilities.Output.scss │ │ │ ├── Fabric.scss │ │ │ ├── _Fabric.Animations.RTL.scss │ │ │ ├── _Fabric.Animations.scss │ │ │ ├── _Fabric.Color.Mixins.scss │ │ │ ├── _Fabric.Color.Variables.scss │ │ │ ├── _Fabric.Common.scss │ │ │ ├── _Fabric.Grid.scss │ │ │ ├── _Fabric.Icons.scss │ │ │ ├── _Fabric.Mixins.scss │ │ │ ├── _Fabric.Responsive.Utilities.Variables.scss │ │ │ ├── _Fabric.Responsive.Variables.scss │ │ │ ├── _Fabric.Typography.Fonts.scss │ │ │ ├── _Fabric.Typography.Language.Overrides.scss │ │ │ ├── _Fabric.Typography.Variables.scss │ │ │ ├── _Fabric.Typography.scss │ │ │ ├── _Fabric.Utilities.scss │ │ │ ├── _Fabric.ZIndex.Variables.scss │ │ │ └── _Office.Color.Variables.scss │ │ │ └── templates │ │ │ ├── component-manifest-template.scss │ │ │ ├── componentSampleTemplate.html │ │ │ ├── individual-component-example.html │ │ │ └── samples-index.html │ │ ├── content │ │ └── Office.css │ │ ├── gulpfile.js │ │ ├── images │ │ └── close.png │ │ ├── jsconfig.json │ │ ├── manifest-contact-cleanup.xml │ │ ├── manifest.xsd │ │ ├── package.json │ │ ├── scripts │ │ └── MicrosoftAjax.js │ │ ├── tsconfig.json │ │ └── tsd.json │ └── End │ └── ContactCleanup │ ├── .bowerrc │ ├── .gitignore │ ├── app │ ├── app.css │ ├── app.js │ ├── auth │ │ └── auth.html │ └── home │ │ ├── home.css │ │ ├── home.html │ │ └── home.js │ ├── bower.json │ ├── bower_components │ ├── adal-angular │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── changelog.txt │ │ ├── contributing.md │ │ ├── dist │ │ │ ├── adal-angular.min.js │ │ │ └── adal.min.js │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── adal-angular.js │ │ │ └── adal.js │ │ └── package.json │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ ├── jquery │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .jshintrc │ │ ├── AUTHORS.txt │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── component.json │ │ ├── composer.json │ │ ├── jquery-migrate.js │ │ ├── jquery-migrate.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── package.json │ │ ├── speed │ │ │ ├── benchmark.js │ │ │ ├── benchmarker.css │ │ │ ├── benchmarker.js │ │ │ ├── closest.html │ │ │ ├── css.html │ │ │ ├── event.html │ │ │ ├── filter.html │ │ │ ├── find.html │ │ │ ├── index.html │ │ │ ├── jquery-basis.js │ │ │ └── slice.vs.concat.html │ │ ├── src │ │ │ ├── .jshintrc │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── script.js │ │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── css.js │ │ │ ├── data.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── event-alias.js │ │ │ ├── event.js │ │ │ ├── exports.js │ │ │ ├── intro.js │ │ │ ├── manipulation.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── serialize.js │ │ │ ├── sizzle-jquery.js │ │ │ ├── support.js │ │ │ └── traversing.js │ │ └── test │ │ │ ├── .jshintignore │ │ │ ├── .jshintrc │ │ │ ├── csp.php │ │ │ ├── data │ │ │ ├── 1x1.jpg │ │ │ ├── ajax │ │ │ │ └── unreleasedXHR.html │ │ │ ├── atom+xml.php │ │ │ ├── badcall.js │ │ │ ├── badjson.js │ │ │ ├── cleanScript.html │ │ │ ├── core │ │ │ │ └── cc_on.html │ │ │ ├── dashboard.xml │ │ │ ├── dimensions │ │ │ │ ├── documentLarge.html │ │ │ │ └── documentSmall.html │ │ │ ├── echoData.php │ │ │ ├── echoQuery.php │ │ │ ├── errorWithText.php │ │ │ ├── etag.php │ │ │ ├── evalScript.php │ │ │ ├── event │ │ │ │ ├── longLoadScript.php │ │ │ │ ├── promiseReady.html │ │ │ │ └── syncReady.html │ │ │ ├── headers.php │ │ │ ├── if_modified_since.php │ │ │ ├── iframe.html │ │ │ ├── jquery-1.8.2.ajax_xhr.min.js │ │ │ ├── json.php │ │ │ ├── json_obj.js │ │ │ ├── jsonp.php │ │ │ ├── manipulation │ │ │ │ └── iframe-denied.html │ │ │ ├── name.html │ │ │ ├── name.php │ │ │ ├── nocontent.php │ │ │ ├── offset │ │ │ │ ├── absolute.html │ │ │ │ ├── body.html │ │ │ │ ├── fixed.html │ │ │ │ ├── relative.html │ │ │ │ ├── scroll.html │ │ │ │ ├── static.html │ │ │ │ └── table.html │ │ │ ├── params_html.php │ │ │ ├── readywaitasset.js │ │ │ ├── readywaitloader.js │ │ │ ├── script.php │ │ │ ├── selector │ │ │ │ ├── html5_selector.html │ │ │ │ └── sizzle_cache.html │ │ │ ├── statusText.php │ │ │ ├── support │ │ │ │ ├── bodyBackground.html │ │ │ │ ├── shrinkWrapBlocks.html │ │ │ │ └── testElementCrash.html │ │ │ ├── test.html │ │ │ ├── test.js │ │ │ ├── test.php │ │ │ ├── test2.html │ │ │ ├── test3.html │ │ │ ├── testinit.js │ │ │ ├── testrunner.js │ │ │ ├── testsuite.css │ │ │ ├── text.php │ │ │ ├── ua.txt │ │ │ ├── with_fries.xml │ │ │ └── with_fries_over_jsonp.php │ │ │ ├── delegatetest.html │ │ │ ├── hovertest.html │ │ │ ├── index.html │ │ │ ├── localfile.html │ │ │ ├── networkerror.html │ │ │ ├── polluted.php │ │ │ ├── readywait.html │ │ │ ├── unit │ │ │ ├── ajax.js │ │ │ ├── attributes.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── css.js │ │ │ ├── data.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── event.js │ │ │ ├── exports.js │ │ │ ├── manipulation.js │ │ │ ├── offset.js │ │ │ ├── queue.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── support.js │ │ │ └── traversing.js │ │ │ └── xhtml.php │ ├── microsoft.office.js │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── content │ │ │ └── officethemes.css │ │ └── scripts │ │ │ └── office │ │ │ ├── 1 │ │ │ ├── access-web-16.00.debug.js │ │ │ ├── access-web-16.00.js │ │ │ ├── ar-sa │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── bg-bg │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── cs-cz │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── da-dk │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── de-de │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── el-gr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── en-us │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── es-es │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── et-ee │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── excel-15.01.debug.js │ │ │ ├── excel-15.01.js │ │ │ ├── excel-15.debug.js │ │ │ ├── excel-15.js │ │ │ ├── excel-ios-16.00.debug.js │ │ │ ├── excel-ios-16.00.js │ │ │ ├── excel-web-16.00.debug.js │ │ │ ├── excel-web-16.00.js │ │ │ ├── excel-win32-16.00.debug.js │ │ │ ├── excel-win32-16.00.js │ │ │ ├── excelios-15.debug.js │ │ │ ├── excelios-15.js │ │ │ ├── excelwebapp-15.01.debug.js │ │ │ ├── excelwebapp-15.01.js │ │ │ ├── excelwebapp-15.debug.js │ │ │ ├── excelwebapp-15.js │ │ │ ├── fi-fi │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── fr-fr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── he-il │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hi-in │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hr-hr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hu-hu │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── id-id │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── it-it │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ja-jp │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── kk-kz │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ko-kr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── lt-lt │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── lv-lv │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ms-my │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── nb-no │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── nl-nl │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── o15apptofilemappingtable.debug.js │ │ │ ├── o15apptofilemappingtable.js │ │ │ ├── office-vsdoc.js │ │ │ ├── office.debug.js │ │ │ ├── office.js │ │ │ ├── outlook-15.01.debug.js │ │ │ ├── outlook-15.01.js │ │ │ ├── outlook-15.02.debug.js │ │ │ ├── outlook-15.02.js │ │ │ ├── outlook-15.debug.js │ │ │ ├── outlook-15.js │ │ │ ├── outlook-web-16.00.debug.js │ │ │ ├── outlook-web-16.00.js │ │ │ ├── outlook-win32-16.00.debug.js │ │ │ ├── outlook-win32-16.00.js │ │ │ ├── outlook-win32.debug-vsdoc.js │ │ │ ├── outlookwebapp-15.01.debug.js │ │ │ ├── outlookwebapp-15.01.js │ │ │ ├── outlookwebapp-15.debug.js │ │ │ ├── outlookwebapp-15.js │ │ │ ├── pl-pl │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── powerpoint-15.01.debug.js │ │ │ ├── powerpoint-15.01.js │ │ │ ├── powerpoint-15.debug.js │ │ │ ├── powerpoint-15.js │ │ │ ├── powerpoint-ios-16.00.debug.js │ │ │ ├── powerpoint-ios-16.00.js │ │ │ ├── powerpoint-web-16.00.debug.js │ │ │ ├── powerpoint-web-16.00.js │ │ │ ├── powerpoint-win32-16.00.debug.js │ │ │ ├── powerpoint-win32-16.00.js │ │ │ ├── powerpointios-15.debug.js │ │ │ ├── powerpointios-15.js │ │ │ ├── project-15.01.debug.js │ │ │ ├── project-15.01.js │ │ │ ├── project-15.debug.js │ │ │ ├── project-15.js │ │ │ ├── project-win32-16.00.debug.js │ │ │ ├── project-win32-16.00.js │ │ │ ├── pt-br │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── pt-pt │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ro-ro │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ru-ru │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sk-sk │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sl-si │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sr-latn-cs │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sv-se │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── th-th │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── tr-tr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── uk-ua │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── vi-vn │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── word-15.01.debug.js │ │ │ ├── word-15.01.js │ │ │ ├── word-15.debug.js │ │ │ ├── word-15.js │ │ │ ├── word-ios-16.00.debug.js │ │ │ ├── word-ios-16.00.js │ │ │ ├── word-web-16.00.debug.js │ │ │ ├── word-web-16.00.js │ │ │ ├── word-win32-16.00.debug.js │ │ │ ├── word-win32-16.00.js │ │ │ ├── wordios-15.debug.js │ │ │ ├── wordios-15.js │ │ │ ├── zh-cn │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ └── zh-tw │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ └── metadata │ │ │ ├── endpoints.xml │ │ │ └── features.xml │ └── office-ui-fabric │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Third Party Notices.txt │ │ ├── bower.json │ │ ├── dist │ │ ├── components │ │ │ ├── Breadcrumb │ │ │ │ ├── Breadcrumb.css │ │ │ │ ├── Breadcrumb.html │ │ │ │ ├── Breadcrumb.json │ │ │ │ ├── Breadcrumb.min.css │ │ │ │ └── Breadcrumb.scss │ │ │ ├── Button │ │ │ │ ├── Button.Command.html │ │ │ │ ├── Button.Compound.html │ │ │ │ ├── Button.Hero.html │ │ │ │ ├── Button.Primary.html │ │ │ │ ├── Button.css │ │ │ │ ├── Button.html │ │ │ │ ├── Button.json │ │ │ │ ├── Button.min.css │ │ │ │ └── Button.scss │ │ │ ├── Callout │ │ │ │ ├── Callout.ActionText.html │ │ │ │ ├── Callout.Close.html │ │ │ │ ├── Callout.Oobe.html │ │ │ │ ├── Callout.Peek.html │ │ │ │ ├── Callout.css │ │ │ │ ├── Callout.html │ │ │ │ ├── Callout.json │ │ │ │ ├── Callout.min.css │ │ │ │ └── Callout.scss │ │ │ ├── ChoiceField │ │ │ │ ├── ChoiceField.Checkbox.Disabled.html │ │ │ │ ├── ChoiceField.Checkbox.Selected.html │ │ │ │ ├── ChoiceField.Checkbox.html │ │ │ │ ├── ChoiceField.ChoiceFieldGroup.html │ │ │ │ ├── ChoiceField.Disabled.html │ │ │ │ ├── ChoiceField.Selected.html │ │ │ │ ├── ChoiceField.css │ │ │ │ ├── ChoiceField.html │ │ │ │ ├── ChoiceField.json │ │ │ │ ├── ChoiceField.min.css │ │ │ │ └── ChoiceField.scss │ │ │ ├── CommandBar │ │ │ │ ├── CommandBar.css │ │ │ │ ├── CommandBar.html │ │ │ │ ├── CommandBar.json │ │ │ │ ├── CommandBar.min.css │ │ │ │ └── CommandBar.scss │ │ │ ├── ContextualMenu │ │ │ │ ├── ContextualMenu.Dividers.html │ │ │ │ ├── ContextualMenu.Multiselect.html │ │ │ │ ├── ContextualMenu.SubMenu.html │ │ │ │ ├── ContextualMenu.css │ │ │ │ ├── ContextualMenu.html │ │ │ │ ├── ContextualMenu.json │ │ │ │ ├── ContextualMenu.min.css │ │ │ │ └── ContextualMenu.scss │ │ │ ├── DatePicker │ │ │ │ ├── DatePicker.css │ │ │ │ ├── DatePicker.html │ │ │ │ ├── DatePicker.json │ │ │ │ ├── DatePicker.min.css │ │ │ │ └── DatePicker.scss │ │ │ ├── Dialog │ │ │ │ ├── Dialog.Blocking.html │ │ │ │ ├── Dialog.Close.html │ │ │ │ ├── Dialog.LgHeader.html │ │ │ │ ├── Dialog.Multiline.html │ │ │ │ ├── Dialog.css │ │ │ │ ├── Dialog.html │ │ │ │ ├── Dialog.json │ │ │ │ ├── Dialog.min.css │ │ │ │ └── Dialog.scss │ │ │ ├── Dropdown │ │ │ │ ├── Dropdown.Disabled.html │ │ │ │ ├── Dropdown.css │ │ │ │ ├── Dropdown.html │ │ │ │ ├── Dropdown.json │ │ │ │ ├── Dropdown.min.css │ │ │ │ └── Dropdown.scss │ │ │ ├── Facepile │ │ │ │ ├── Facepile.css │ │ │ │ ├── Facepile.html │ │ │ │ ├── Facepile.json │ │ │ │ ├── Facepile.min.css │ │ │ │ └── Facepile.scss │ │ │ ├── Label │ │ │ │ ├── Label.Disabled.html │ │ │ │ ├── Label.Required.html │ │ │ │ ├── Label.css │ │ │ │ ├── Label.html │ │ │ │ ├── Label.json │ │ │ │ ├── Label.min.css │ │ │ │ └── Label.scss │ │ │ ├── Link │ │ │ │ ├── Link.Hero.html │ │ │ │ ├── Link.css │ │ │ │ ├── Link.html │ │ │ │ ├── Link.json │ │ │ │ ├── Link.min.css │ │ │ │ └── Link.scss │ │ │ ├── List │ │ │ │ ├── List.Grid.html │ │ │ │ ├── List.css │ │ │ │ ├── List.html │ │ │ │ ├── List.json │ │ │ │ ├── List.min.css │ │ │ │ └── List.scss │ │ │ ├── ListItem │ │ │ │ ├── ListItem.Document.html │ │ │ │ ├── ListItem.Image.html │ │ │ │ ├── ListItem.Selectable.html │ │ │ │ ├── ListItem.Selected.html │ │ │ │ ├── ListItem.Unread.html │ │ │ │ ├── ListItem.Unseen.html │ │ │ │ ├── ListItem.css │ │ │ │ ├── ListItem.html │ │ │ │ ├── ListItem.json │ │ │ │ ├── ListItem.min.css │ │ │ │ └── ListItem.scss │ │ │ ├── MessageBanner │ │ │ │ ├── MessageBanner.css │ │ │ │ ├── MessageBanner.html │ │ │ │ ├── MessageBanner.json │ │ │ │ ├── MessageBanner.min.css │ │ │ │ └── MessageBanner.scss │ │ │ ├── NavBar │ │ │ │ ├── NavBar.css │ │ │ │ ├── NavBar.html │ │ │ │ ├── NavBar.json │ │ │ │ ├── NavBar.min.css │ │ │ │ └── NavBar.scss │ │ │ ├── OrgChart │ │ │ │ ├── OrgChart.Square.html │ │ │ │ ├── OrgChart.css │ │ │ │ ├── OrgChart.html │ │ │ │ ├── OrgChart.json │ │ │ │ ├── OrgChart.min.css │ │ │ │ └── OrgChart.scss │ │ │ ├── Overlay │ │ │ │ ├── Overlay.Dark.html │ │ │ │ ├── Overlay.None.html │ │ │ │ ├── Overlay.css │ │ │ │ ├── Overlay.html │ │ │ │ ├── Overlay.json │ │ │ │ ├── Overlay.min.css │ │ │ │ └── Overlay.scss │ │ │ ├── Panel │ │ │ │ ├── Panel.ExtraLarge.html │ │ │ │ ├── Panel.Large.html │ │ │ │ ├── Panel.Medium.html │ │ │ │ ├── Panel.css │ │ │ │ ├── Panel.html │ │ │ │ ├── Panel.json │ │ │ │ ├── Panel.min.css │ │ │ │ └── Panel.scss │ │ │ ├── PeoplePicker │ │ │ │ ├── PeoplePicker.Compact.html │ │ │ │ ├── PeoplePicker.Disconnected.html │ │ │ │ ├── PeoplePicker.FacePile.html │ │ │ │ ├── PeoplePicker.MembersList.html │ │ │ │ ├── PeoplePicker.Searching.png │ │ │ │ ├── PeoplePicker.css │ │ │ │ ├── PeoplePicker.html │ │ │ │ ├── PeoplePicker.json │ │ │ │ ├── PeoplePicker.min.css │ │ │ │ └── PeoplePicker.scss │ │ │ ├── Persona │ │ │ │ ├── Persona.ExtraLarge.html │ │ │ │ ├── Persona.ExtraSmall.html │ │ │ │ ├── Persona.Initials.html │ │ │ │ ├── Persona.Large.html │ │ │ │ ├── Persona.Person.jpg │ │ │ │ ├── Persona.Person2.png │ │ │ │ ├── Persona.Presence.Available.html │ │ │ │ ├── Persona.Presence.Away.html │ │ │ │ ├── Persona.Presence.Blocked.html │ │ │ │ ├── Persona.Presence.Busy.html │ │ │ │ ├── Persona.Presence.Dnd.html │ │ │ │ ├── Persona.Presence.Offline.html │ │ │ │ ├── Persona.Presence.Square.Available.html │ │ │ │ ├── Persona.Presence.Square.Away.html │ │ │ │ ├── Persona.Presence.Square.Blocked.html │ │ │ │ ├── Persona.Presence.Square.Busy.html │ │ │ │ ├── Persona.Presence.Square.Dnd.html │ │ │ │ ├── Persona.Presence.Square.Offline.html │ │ │ │ ├── Persona.Small.html │ │ │ │ ├── Persona.Square.ExtraLarge.html │ │ │ │ ├── Persona.Square.ExtraSmall.html │ │ │ │ ├── Persona.Square.Large.html │ │ │ │ ├── Persona.Square.Small.html │ │ │ │ ├── Persona.Square.Tiny.html │ │ │ │ ├── Persona.Square.html │ │ │ │ ├── Persona.Tiny.html │ │ │ │ ├── Persona.css │ │ │ │ ├── Persona.html │ │ │ │ ├── Persona.json │ │ │ │ ├── Persona.min.css │ │ │ │ └── Persona.scss │ │ │ ├── PersonaCard │ │ │ │ ├── PersonaCard.Square.html │ │ │ │ ├── PersonaCard.css │ │ │ │ ├── PersonaCard.html │ │ │ │ ├── PersonaCard.json │ │ │ │ ├── PersonaCard.min.css │ │ │ │ └── PersonaCard.scss │ │ │ ├── Pivot │ │ │ │ ├── Pivot.Large.html │ │ │ │ ├── Pivot.Tabs.Large.html │ │ │ │ ├── Pivot.Tabs.html │ │ │ │ ├── Pivot.css │ │ │ │ ├── Pivot.html │ │ │ │ ├── Pivot.json │ │ │ │ ├── Pivot.min.css │ │ │ │ └── Pivot.scss │ │ │ ├── ProgressIndicator │ │ │ │ ├── ProgressIndicator.css │ │ │ │ ├── ProgressIndicator.html │ │ │ │ ├── ProgressIndicator.json │ │ │ │ ├── ProgressIndicator.min.css │ │ │ │ └── ProgressIndicator.scss │ │ │ ├── SearchBox │ │ │ │ ├── SearchBox.css │ │ │ │ ├── SearchBox.html │ │ │ │ ├── SearchBox.json │ │ │ │ ├── SearchBox.min.css │ │ │ │ └── SearchBox.scss │ │ │ ├── Spinner │ │ │ │ ├── Spinner.Large.html │ │ │ │ ├── Spinner.Message.Large.html │ │ │ │ ├── Spinner.Message.html │ │ │ │ ├── Spinner.css │ │ │ │ ├── Spinner.html │ │ │ │ ├── Spinner.json │ │ │ │ ├── Spinner.min.css │ │ │ │ └── Spinner.scss │ │ │ ├── Table │ │ │ │ ├── Table.css │ │ │ │ ├── Table.html │ │ │ │ ├── Table.json │ │ │ │ ├── Table.min.css │ │ │ │ └── Table.scss │ │ │ ├── TextField │ │ │ │ ├── TextField.Multiline.html │ │ │ │ ├── TextField.Placeholder.html │ │ │ │ ├── TextField.Underlined.html │ │ │ │ ├── TextField.css │ │ │ │ ├── TextField.html │ │ │ │ ├── TextField.json │ │ │ │ ├── TextField.min.css │ │ │ │ └── TextField.scss │ │ │ └── Toggle │ │ │ │ ├── Toggle.TextLeft.html │ │ │ │ ├── Toggle.css │ │ │ │ ├── Toggle.html │ │ │ │ ├── Toggle.json │ │ │ │ ├── Toggle.min.css │ │ │ │ └── Toggle.scss │ │ ├── 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 │ │ ├── js │ │ │ ├── jquery.fabric.js │ │ │ └── jquery.fabric.min.js │ │ ├── samples │ │ │ ├── Components │ │ │ │ ├── Breadcrumb │ │ │ │ │ ├── Breadcrumb.css │ │ │ │ │ ├── Breadcrumb.js │ │ │ │ │ ├── Breadcrumb.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Button │ │ │ │ │ ├── Button.css │ │ │ │ │ ├── Button.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Callout │ │ │ │ │ ├── Callout.css │ │ │ │ │ ├── Callout.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── ChoiceField │ │ │ │ │ ├── ChoiceField.css │ │ │ │ │ ├── ChoiceField.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── CommandBar │ │ │ │ │ ├── CommandBar.css │ │ │ │ │ ├── CommandBar.min.css │ │ │ │ │ ├── Jquery.CommandBar.js │ │ │ │ │ └── index.html │ │ │ │ ├── ContextualMenu │ │ │ │ │ ├── ContextualMenu.css │ │ │ │ │ ├── ContextualMenu.min.css │ │ │ │ │ ├── Jquery.ContextualMenu.js │ │ │ │ │ └── index.html │ │ │ │ ├── DatePicker │ │ │ │ │ ├── DatePicker.css │ │ │ │ │ ├── DatePicker.min.css │ │ │ │ │ ├── Jquery.DatePicker.js │ │ │ │ │ ├── PickaDate.js │ │ │ │ │ └── index.html │ │ │ │ ├── Dialog │ │ │ │ │ ├── Dialog.css │ │ │ │ │ ├── Dialog.min.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── jquery.Dialog.js │ │ │ │ ├── Dropdown │ │ │ │ │ ├── Dropdown.css │ │ │ │ │ ├── Dropdown.min.css │ │ │ │ │ ├── Jquery.Dropdown.js │ │ │ │ │ └── index.html │ │ │ │ ├── Facepile │ │ │ │ │ ├── Facepile.css │ │ │ │ │ ├── Facepile.min.css │ │ │ │ │ ├── Jquery.Facepile.js │ │ │ │ │ └── index.html │ │ │ │ ├── Label │ │ │ │ │ ├── Label.css │ │ │ │ │ ├── Label.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Link │ │ │ │ │ ├── Link.css │ │ │ │ │ ├── Link.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── List │ │ │ │ │ ├── List.css │ │ │ │ │ ├── List.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── ListItem │ │ │ │ │ ├── Jquery.ListItem.js │ │ │ │ │ ├── ListItem.css │ │ │ │ │ ├── ListItem.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── MessageBanner │ │ │ │ │ ├── MessageBanner.css │ │ │ │ │ ├── MessageBanner.js │ │ │ │ │ ├── MessageBanner.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── NavBar │ │ │ │ │ ├── Jquery.NavBar.js │ │ │ │ │ ├── NavBar.css │ │ │ │ │ ├── NavBar.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── OrgChart │ │ │ │ │ ├── OrgChart.css │ │ │ │ │ ├── OrgChart.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Overlay │ │ │ │ │ ├── Overlay.css │ │ │ │ │ ├── Overlay.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Panel │ │ │ │ │ ├── Jquery.Panel.js │ │ │ │ │ ├── Panel.css │ │ │ │ │ ├── Panel.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── PeoplePicker │ │ │ │ │ ├── Jquery.PeoplePicker.js │ │ │ │ │ ├── PeoplePicker.Searching.png │ │ │ │ │ ├── PeoplePicker.css │ │ │ │ │ ├── PeoplePicker.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Persona │ │ │ │ │ ├── Persona.Person.jpg │ │ │ │ │ ├── Persona.Person2.png │ │ │ │ │ ├── Persona.css │ │ │ │ │ ├── Persona.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── PersonaCard │ │ │ │ │ ├── Jquery.PersonaCard.js │ │ │ │ │ ├── PersonaCard.css │ │ │ │ │ ├── PersonaCard.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Pivot │ │ │ │ │ ├── Pivot.css │ │ │ │ │ ├── Pivot.min.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── jquery.Pivot.js │ │ │ │ ├── ProgressIndicator │ │ │ │ │ ├── ProgressIndicator.css │ │ │ │ │ ├── ProgressIndicator.js │ │ │ │ │ ├── ProgressIndicator.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── SearchBox │ │ │ │ │ ├── Jquery.SearchBox.js │ │ │ │ │ ├── SearchBox.css │ │ │ │ │ ├── SearchBox.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Spinner │ │ │ │ │ ├── Spinner.css │ │ │ │ │ ├── Spinner.js │ │ │ │ │ ├── Spinner.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── Table │ │ │ │ │ ├── Table.css │ │ │ │ │ ├── Table.min.css │ │ │ │ │ └── index.html │ │ │ │ ├── TextField │ │ │ │ │ ├── Jquery.TextField.js │ │ │ │ │ ├── TextField.css │ │ │ │ │ ├── TextField.min.css │ │ │ │ │ └── index.html │ │ │ │ └── Toggle │ │ │ │ │ ├── Toggle.css │ │ │ │ │ ├── Toggle.min.css │ │ │ │ │ └── index.html │ │ │ ├── Form │ │ │ │ ├── css │ │ │ │ │ ├── Form.css │ │ │ │ │ └── Form.min.css │ │ │ │ ├── index.html │ │ │ │ └── sass │ │ │ │ │ └── Form.scss │ │ │ ├── Icons │ │ │ │ └── index.html │ │ │ ├── VideoPortal │ │ │ │ ├── channel.html │ │ │ │ ├── channels.html │ │ │ │ ├── css │ │ │ │ │ ├── VideoPortal.css │ │ │ │ │ └── VideoPortal.min.css │ │ │ │ ├── index.html │ │ │ │ ├── player.html │ │ │ │ └── sass │ │ │ │ │ ├── Base.scss │ │ │ │ │ ├── ChannelPage.scss │ │ │ │ │ ├── ChannelsPage.scss │ │ │ │ │ ├── HomePage.scss │ │ │ │ │ ├── NavBar.scss │ │ │ │ │ ├── PlayerPage.scss │ │ │ │ │ ├── SpotLight.scss │ │ │ │ │ ├── Utilities.scss │ │ │ │ │ ├── VideoListItem.scss │ │ │ │ │ └── VideoPortal.scss │ │ │ └── index.html │ │ └── sass │ │ │ ├── Fabric.Animations.Output.scss │ │ │ ├── Fabric.Animations.RTL.Output.scss │ │ │ ├── Fabric.Color.Mixins.Output.scss │ │ │ ├── Fabric.Components.scss │ │ │ ├── Fabric.Grid.Output.scss │ │ │ ├── Fabric.Icons.Font.Output.scss │ │ │ ├── Fabric.Icons.Output.scss │ │ │ ├── Fabric.Icons.RTL.Output.scss │ │ │ ├── Fabric.RTL.scss │ │ │ ├── Fabric.Responsive.Utilities.Output.scss │ │ │ ├── Fabric.Typography.Fonts.Output.scss │ │ │ ├── Fabric.Typography.Language.Overrides.Output.scss │ │ │ ├── Fabric.Typography.Output.scss │ │ │ ├── Fabric.Utilities.Output.scss │ │ │ ├── Fabric.scss │ │ │ ├── _Fabric.Animations.RTL.scss │ │ │ ├── _Fabric.Animations.scss │ │ │ ├── _Fabric.Color.Mixins.scss │ │ │ ├── _Fabric.Color.Variables.scss │ │ │ ├── _Fabric.Common.scss │ │ │ ├── _Fabric.Grid.scss │ │ │ ├── _Fabric.Icons.scss │ │ │ ├── _Fabric.Mixins.scss │ │ │ ├── _Fabric.Responsive.Utilities.Variables.scss │ │ │ ├── _Fabric.Responsive.Variables.scss │ │ │ ├── _Fabric.Typography.Fonts.scss │ │ │ ├── _Fabric.Typography.Language.Overrides.scss │ │ │ ├── _Fabric.Typography.Variables.scss │ │ │ ├── _Fabric.Typography.scss │ │ │ ├── _Fabric.Utilities.scss │ │ │ ├── _Fabric.ZIndex.Variables.scss │ │ │ └── _Office.Color.Variables.scss │ │ ├── gulpfile.js │ │ ├── package.json │ │ └── src │ │ ├── components │ │ ├── Breadcrumb │ │ │ ├── Breadcrumb.html │ │ │ ├── Breadcrumb.js │ │ │ ├── Breadcrumb.json │ │ │ └── Breadcrumb.scss │ │ ├── Button │ │ │ ├── Button.Command.html │ │ │ ├── Button.Compound.html │ │ │ ├── Button.Hero.html │ │ │ ├── Button.Primary.html │ │ │ ├── Button.html │ │ │ ├── Button.json │ │ │ └── Button.scss │ │ ├── Callout │ │ │ ├── Callout.ActionText.html │ │ │ ├── Callout.Close.html │ │ │ ├── Callout.Oobe.html │ │ │ ├── Callout.Peek.html │ │ │ ├── Callout.html │ │ │ ├── Callout.json │ │ │ └── Callout.scss │ │ ├── ChoiceField │ │ │ ├── ChoiceField.Checkbox.Disabled.html │ │ │ ├── ChoiceField.Checkbox.Selected.html │ │ │ ├── ChoiceField.Checkbox.html │ │ │ ├── ChoiceField.ChoiceFieldGroup.html │ │ │ ├── ChoiceField.Disabled.html │ │ │ ├── ChoiceField.Selected.html │ │ │ ├── ChoiceField.html │ │ │ ├── ChoiceField.json │ │ │ └── ChoiceField.scss │ │ ├── CommandBar │ │ │ ├── CommandBar.html │ │ │ ├── CommandBar.json │ │ │ ├── CommandBar.scss │ │ │ └── Jquery.CommandBar.js │ │ ├── ContextualMenu │ │ │ ├── ContextualMenu.Dividers.html │ │ │ ├── ContextualMenu.Multiselect.html │ │ │ ├── ContextualMenu.SubMenu.html │ │ │ ├── ContextualMenu.html │ │ │ ├── ContextualMenu.json │ │ │ ├── ContextualMenu.scss │ │ │ └── Jquery.ContextualMenu.js │ │ ├── DatePicker │ │ │ ├── DatePicker.html │ │ │ ├── DatePicker.json │ │ │ ├── DatePicker.scss │ │ │ ├── Jquery.DatePicker.js │ │ │ └── PickaDate.js │ │ ├── Dialog │ │ │ ├── Dialog.Blocking.html │ │ │ ├── Dialog.Close.html │ │ │ ├── Dialog.LgHeader.html │ │ │ ├── Dialog.Multiline.html │ │ │ ├── Dialog.html │ │ │ ├── Dialog.json │ │ │ ├── Dialog.scss │ │ │ └── jquery.Dialog.js │ │ ├── Dropdown │ │ │ ├── Dropdown.Disabled.html │ │ │ ├── Dropdown.html │ │ │ ├── Dropdown.json │ │ │ ├── Dropdown.scss │ │ │ └── Jquery.Dropdown.js │ │ ├── Facepile │ │ │ ├── Facepile.html │ │ │ ├── Facepile.json │ │ │ ├── Facepile.scss │ │ │ └── Jquery.Facepile.js │ │ ├── Label │ │ │ ├── Label.Disabled.html │ │ │ ├── Label.Required.html │ │ │ ├── Label.html │ │ │ ├── Label.json │ │ │ └── Label.scss │ │ ├── Link │ │ │ ├── Link.Hero.html │ │ │ ├── Link.html │ │ │ ├── Link.json │ │ │ └── Link.scss │ │ ├── List │ │ │ ├── List.Grid.html │ │ │ ├── List.html │ │ │ ├── List.json │ │ │ └── List.scss │ │ ├── ListItem │ │ │ ├── Jquery.ListItem.js │ │ │ ├── ListItem.Document.html │ │ │ ├── ListItem.Image.html │ │ │ ├── ListItem.Selectable.html │ │ │ ├── ListItem.Selected.html │ │ │ ├── ListItem.Unread.html │ │ │ ├── ListItem.Unseen.html │ │ │ ├── ListItem.html │ │ │ ├── ListItem.json │ │ │ └── ListItem.scss │ │ ├── MessageBanner │ │ │ ├── MessageBanner.html │ │ │ ├── MessageBanner.js │ │ │ ├── MessageBanner.json │ │ │ └── MessageBanner.scss │ │ ├── NavBar │ │ │ ├── Jquery.NavBar.js │ │ │ ├── NavBar.html │ │ │ ├── NavBar.json │ │ │ └── NavBar.scss │ │ ├── OrgChart │ │ │ ├── OrgChart.Square.html │ │ │ ├── OrgChart.html │ │ │ ├── OrgChart.json │ │ │ └── OrgChart.scss │ │ ├── Overlay │ │ │ ├── Overlay.Dark.html │ │ │ ├── Overlay.None.html │ │ │ ├── Overlay.html │ │ │ ├── Overlay.json │ │ │ └── Overlay.scss │ │ ├── Panel │ │ │ ├── Jquery.Panel.js │ │ │ ├── Panel.ExtraLarge.html │ │ │ ├── Panel.Large.html │ │ │ ├── Panel.Medium.html │ │ │ ├── Panel.html │ │ │ ├── Panel.json │ │ │ └── Panel.scss │ │ ├── PeoplePicker │ │ │ ├── Jquery.PeoplePicker.js │ │ │ ├── PeoplePicker.Compact.html │ │ │ ├── PeoplePicker.Disconnected.html │ │ │ ├── PeoplePicker.FacePile.html │ │ │ ├── PeoplePicker.MembersList.html │ │ │ ├── PeoplePicker.Searching.png │ │ │ ├── PeoplePicker.html │ │ │ ├── PeoplePicker.json │ │ │ └── PeoplePicker.scss │ │ ├── Persona │ │ │ ├── Persona.ExtraLarge.html │ │ │ ├── Persona.ExtraSmall.html │ │ │ ├── Persona.Initials.html │ │ │ ├── Persona.Large.html │ │ │ ├── Persona.Person.jpg │ │ │ ├── Persona.Person2.png │ │ │ ├── Persona.Presence.Available.html │ │ │ ├── Persona.Presence.Away.html │ │ │ ├── Persona.Presence.Blocked.html │ │ │ ├── Persona.Presence.Busy.html │ │ │ ├── Persona.Presence.Dnd.html │ │ │ ├── Persona.Presence.Offline.html │ │ │ ├── Persona.Presence.Square.Available.html │ │ │ ├── Persona.Presence.Square.Away.html │ │ │ ├── Persona.Presence.Square.Blocked.html │ │ │ ├── Persona.Presence.Square.Busy.html │ │ │ ├── Persona.Presence.Square.Dnd.html │ │ │ ├── Persona.Presence.Square.Offline.html │ │ │ ├── Persona.Small.html │ │ │ ├── Persona.Square.ExtraLarge.html │ │ │ ├── Persona.Square.ExtraSmall.html │ │ │ ├── Persona.Square.Large.html │ │ │ ├── Persona.Square.Small.html │ │ │ ├── Persona.Square.Tiny.html │ │ │ ├── Persona.Square.html │ │ │ ├── Persona.Tiny.html │ │ │ ├── Persona.html │ │ │ ├── Persona.json │ │ │ └── Persona.scss │ │ ├── PersonaCard │ │ │ ├── Jquery.PersonaCard.js │ │ │ ├── PersonaCard.Square.html │ │ │ ├── PersonaCard.html │ │ │ ├── PersonaCard.json │ │ │ └── PersonaCard.scss │ │ ├── Pivot │ │ │ ├── Pivot.Large.html │ │ │ ├── Pivot.Tabs.Large.html │ │ │ ├── Pivot.Tabs.html │ │ │ ├── Pivot.html │ │ │ ├── Pivot.json │ │ │ ├── Pivot.scss │ │ │ └── jquery.Pivot.js │ │ ├── ProgressIndicator │ │ │ ├── ProgressIndicator.html │ │ │ ├── ProgressIndicator.js │ │ │ ├── ProgressIndicator.json │ │ │ └── ProgressIndicator.scss │ │ ├── SearchBox │ │ │ ├── Jquery.SearchBox.js │ │ │ ├── SearchBox.html │ │ │ ├── SearchBox.json │ │ │ └── SearchBox.scss │ │ ├── Spinner │ │ │ ├── Spinner.Large.html │ │ │ ├── Spinner.Message.Large.html │ │ │ ├── Spinner.Message.html │ │ │ ├── Spinner.html │ │ │ ├── Spinner.js │ │ │ ├── Spinner.json │ │ │ └── Spinner.scss │ │ ├── Table │ │ │ ├── Table.html │ │ │ ├── Table.json │ │ │ └── Table.scss │ │ ├── TextField │ │ │ ├── Jquery.TextField.js │ │ │ ├── TextField.Multiline.html │ │ │ ├── TextField.Placeholder.html │ │ │ ├── TextField.Underlined.html │ │ │ ├── TextField.html │ │ │ ├── TextField.json │ │ │ └── TextField.scss │ │ └── Toggle │ │ │ ├── Toggle.TextLeft.html │ │ │ ├── Toggle.html │ │ │ ├── Toggle.json │ │ │ └── Toggle.scss │ │ ├── samples │ │ ├── Form │ │ │ ├── index.html │ │ │ └── sass │ │ │ │ └── Form.scss │ │ ├── Icons │ │ │ └── index.html │ │ └── VideoPortal │ │ │ ├── channel.html │ │ │ ├── channels.html │ │ │ ├── index.html │ │ │ ├── player.html │ │ │ └── sass │ │ │ ├── Base.scss │ │ │ ├── ChannelPage.scss │ │ │ ├── ChannelsPage.scss │ │ │ ├── HomePage.scss │ │ │ ├── NavBar.scss │ │ │ ├── PlayerPage.scss │ │ │ ├── SpotLight.scss │ │ │ ├── Utilities.scss │ │ │ ├── VideoListItem.scss │ │ │ └── VideoPortal.scss │ │ ├── sass │ │ ├── Fabric.Animations.Output.scss │ │ ├── Fabric.Animations.RTL.Output.scss │ │ ├── Fabric.Color.Mixins.Output.scss │ │ ├── Fabric.Components.scss │ │ ├── Fabric.Grid.Output.scss │ │ ├── Fabric.Icons.Font.Output.scss │ │ ├── Fabric.Icons.Output.scss │ │ ├── Fabric.Icons.RTL.Output.scss │ │ ├── Fabric.RTL.scss │ │ ├── Fabric.Responsive.Utilities.Output.scss │ │ ├── Fabric.Typography.Fonts.Output.scss │ │ ├── Fabric.Typography.Language.Overrides.Output.scss │ │ ├── Fabric.Typography.Output.scss │ │ ├── Fabric.Utilities.Output.scss │ │ ├── Fabric.scss │ │ ├── _Fabric.Animations.RTL.scss │ │ ├── _Fabric.Animations.scss │ │ ├── _Fabric.Color.Mixins.scss │ │ ├── _Fabric.Color.Variables.scss │ │ ├── _Fabric.Common.scss │ │ ├── _Fabric.Grid.scss │ │ ├── _Fabric.Icons.scss │ │ ├── _Fabric.Mixins.scss │ │ ├── _Fabric.Responsive.Utilities.Variables.scss │ │ ├── _Fabric.Responsive.Variables.scss │ │ ├── _Fabric.Typography.Fonts.scss │ │ ├── _Fabric.Typography.Language.Overrides.scss │ │ ├── _Fabric.Typography.Variables.scss │ │ ├── _Fabric.Typography.scss │ │ ├── _Fabric.Utilities.scss │ │ ├── _Fabric.ZIndex.Variables.scss │ │ └── _Office.Color.Variables.scss │ │ └── templates │ │ ├── component-manifest-template.scss │ │ ├── componentSampleTemplate.html │ │ ├── individual-component-example.html │ │ └── samples-index.html │ ├── content │ └── Office.css │ ├── gulpfile.js │ ├── images │ └── close.png │ ├── jsconfig.json │ ├── manifest-contact-cleanup.xml │ ├── manifest.xsd │ ├── package.json │ ├── scripts │ └── MicrosoftAjax.js │ ├── tsconfig.json │ └── tsd.json ├── Module4-O365ConnectorsAndSkype ├── Images │ ├── Mod4_AddGroup.png │ ├── Mod4_CallbackCtrl.png │ ├── Mod4_Card.png │ ├── Mod4_ConnectBtn.png │ ├── Mod4_ConnectMsg.png │ ├── Mod4_ConnectTo.png │ ├── Mod4_ConnectToGroup.png │ ├── Mod4_Connectors.png │ ├── Mod4_ConnectorsAdd.png │ ├── Mod4_ConnectorsForm.png │ ├── Mod4_ConnectorsMenu.png │ ├── Mod4_DbCon2.png │ ├── Mod4_GroupSelect.png │ ├── Mod4_Groups.png │ ├── Mod4_HookDone.png │ ├── Mod4_IncomingConfirmation.png │ ├── Mod4_IncomingWebhook.png │ ├── Mod4_Listings.png │ ├── Mod4_ManualConfirm.png │ ├── Mod4_ManualHook.png │ ├── Mod4_PubDB1.png │ ├── Mod4_SkypeChat.png │ ├── Mod4_Twitter1.png │ ├── Mod4_Twitter2.png │ ├── Mod4_Twitter3.png │ ├── Mod4_presence1.png │ ├── Mod4_presence2.png │ ├── Mod4_signin.png │ └── Mod4_tickets.png ├── README.md ├── Setup.cmd ├── Setup │ ├── Cleanup.cmd │ ├── Setup.cmd │ └── scripts │ │ ├── InstallCodeSnippets.cmd │ │ ├── installCodeSnippets.ps1 │ │ └── snippets │ │ └── OfficeSnippets.vsix ├── Slides │ └── Module4-O365ConnectorsAndSkype.pptx └── Source │ ├── Ex1 │ ├── Begin │ │ ├── BillsListASPNET.Data │ │ │ ├── BillsListASPNET.Data.sqlproj │ │ │ ├── Item.sql │ │ │ ├── Subscription.sql │ │ │ └── TestDataLoad.sql │ │ ├── BillsListASPNET.sln │ │ └── BillsListASPNET │ │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ └── RouteConfig.cs │ │ │ ├── BillsList.png │ │ │ ├── BillsListASPNET.csproj │ │ │ ├── Content │ │ │ ├── Site.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── ItemsController.cs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Models │ │ │ ├── BillsListModel.Context.cs │ │ │ ├── BillsListModel.Context.tt │ │ │ ├── BillsListModel.Designer.cs │ │ │ ├── BillsListModel.cs │ │ │ ├── BillsListModel.edmx │ │ │ ├── BillsListModel.edmx.diagram │ │ │ ├── BillsListModel.tt │ │ │ ├── Item.cs │ │ │ └── Subscription.cs │ │ │ ├── Project_Readme.html │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.6.2.js │ │ │ ├── respond.js │ │ │ └── respond.min.js │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Items │ │ │ │ ├── Category.cshtml │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Detail.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── My.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── packages.config │ └── End │ │ ├── BillsListASPNET.Data │ │ ├── BillsListASPNET.Data.sqlproj │ │ ├── Item.sql │ │ ├── Subscription.sql │ │ └── TestDataLoad.sql │ │ ├── BillsListASPNET.sln │ │ └── BillsListASPNET │ │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ │ ├── BillsList.png │ │ ├── BillsListASPNET.csproj │ │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Controllers │ │ ├── CallbackController.cs │ │ ├── HomeController.cs │ │ └── ItemsController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Models │ │ ├── BillsListModel.Context.cs │ │ ├── BillsListModel.Context.tt │ │ ├── BillsListModel.Designer.cs │ │ ├── BillsListModel.cs │ │ ├── BillsListModel.edmx │ │ ├── BillsListModel.edmx.diagram │ │ ├── BillsListModel.tt │ │ ├── Item.cs │ │ └── Subscription.cs │ │ ├── Project_Readme.html │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ ├── _references.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Items │ │ │ ├── Category.cshtml │ │ │ ├── Create.cshtml │ │ │ ├── Detail.cshtml │ │ │ ├── Index.cshtml │ │ │ └── My.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ │ └── packages.config │ └── Ex2 │ ├── Begin │ └── SkypeHelpdesk │ │ ├── .bowerrc │ │ ├── LICENSE │ │ ├── app │ │ ├── app.js │ │ ├── controllers.js │ │ ├── factory.js │ │ └── templates │ │ │ ├── view-login.html │ │ │ └── view-tickets.html │ │ ├── bower.json │ │ ├── content │ │ ├── app.css │ │ └── nopic.jpg │ │ ├── index.html │ │ └── lib │ │ ├── adal-angular │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── changelog.txt │ │ ├── contributing.md │ │ ├── dist │ │ │ ├── adal-angular.min.js │ │ │ └── adal.min.js │ │ ├── karma.conf.js │ │ ├── lib │ │ │ ├── adal-angular.js │ │ │ └── adal.js │ │ └── package.json │ │ ├── angular-route │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-route.js │ │ ├── angular-route.min.js │ │ ├── angular-route.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ │ └── jquery │ │ ├── .bower.json │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ │ └── src │ │ ├── .jshintrc │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── DOMEval.js │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ ├── support.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ ├── accepts.js │ │ ├── support.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ │ ├── deferred.js │ │ ├── deferred │ │ └── exceptionHook.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ ├── animatedSelector.js │ │ └── support.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── createSafeFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── nodeNames.js │ │ │ ├── rcheckableType.js │ │ │ ├── rleadingWhitespace.js │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── support.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ │ ├── var │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── deletedIds.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcssNum.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js │ └── End │ └── SkypeHelpdesk │ ├── .bowerrc │ ├── LICENSE │ ├── app │ ├── app.js │ ├── controllers.js │ ├── factory.js │ ├── skype.js │ └── templates │ │ ├── view-login.html │ │ └── view-tickets.html │ ├── auth.html │ ├── bower.json │ ├── content │ ├── app.css │ └── nopic.jpg │ ├── index.html │ └── lib │ ├── adal-angular │ ├── .bower.json │ ├── Gruntfile.js │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── changelog.txt │ ├── contributing.md │ ├── dist │ │ ├── adal-angular.min.js │ │ └── adal.min.js │ ├── karma.conf.js │ ├── lib │ │ ├── adal-angular.js │ │ └── adal.js │ └── package.json │ ├── angular-route │ ├── .bower.json │ ├── README.md │ ├── angular-route.js │ ├── angular-route.min.js │ ├── angular-route.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json │ ├── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json │ ├── bootstrap │ ├── .bower.json │ ├── CHANGELOG.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── grunt │ │ ├── .jshintrc │ │ ├── bs-commonjs-generator.js │ │ ├── bs-glyphicons-data-generator.js │ │ ├── bs-lessdoc-parser.js │ │ ├── bs-raw-files-generator.js │ │ ├── configBridge.json │ │ └── sauce_browsers.yml │ ├── js │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js │ ├── less │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── nuget │ │ ├── MyGet.ps1 │ │ ├── bootstrap.less.nuspec │ │ └── bootstrap.nuspec │ ├── package.js │ └── package.json │ └── jquery │ ├── .bower.json │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── README.md │ ├── bower.json │ ├── dist │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map │ └── src │ ├── .jshintrc │ ├── ajax.js │ ├── ajax │ ├── jsonp.js │ ├── load.js │ ├── parseJSON.js │ ├── parseXML.js │ ├── script.js │ ├── var │ │ ├── location.js │ │ ├── nonce.js │ │ └── rquery.js │ └── xhr.js │ ├── attributes.js │ ├── attributes │ ├── attr.js │ ├── classes.js │ ├── prop.js │ ├── support.js │ └── val.js │ ├── callbacks.js │ ├── core.js │ ├── core │ ├── DOMEval.js │ ├── access.js │ ├── init.js │ ├── parseHTML.js │ ├── ready.js │ ├── support.js │ └── var │ │ └── rsingleTag.js │ ├── css.js │ ├── css │ ├── addGetHookIf.js │ ├── adjustCSS.js │ ├── curCSS.js │ ├── defaultDisplay.js │ ├── hiddenVisibleSelectors.js │ ├── showHide.js │ ├── support.js │ └── var │ │ ├── cssExpand.js │ │ ├── getStyles.js │ │ ├── isHidden.js │ │ ├── rmargin.js │ │ ├── rnumnonpx.js │ │ └── swap.js │ ├── data.js │ ├── data │ ├── Data.js │ ├── accepts.js │ ├── support.js │ └── var │ │ ├── acceptData.js │ │ ├── dataPriv.js │ │ └── dataUser.js │ ├── deferred.js │ ├── deferred │ └── exceptionHook.js │ ├── deprecated.js │ ├── dimensions.js │ ├── effects.js │ ├── effects │ ├── Tween.js │ ├── animatedSelector.js │ └── support.js │ ├── event.js │ ├── event │ ├── ajax.js │ ├── alias.js │ ├── focusin.js │ ├── support.js │ └── trigger.js │ ├── exports │ ├── amd.js │ └── global.js │ ├── intro.js │ ├── jquery.js │ ├── manipulation.js │ ├── manipulation │ ├── _evalUrl.js │ ├── buildFragment.js │ ├── createSafeFragment.js │ ├── getAll.js │ ├── setGlobalEval.js │ ├── support.js │ ├── var │ │ ├── nodeNames.js │ │ ├── rcheckableType.js │ │ ├── rleadingWhitespace.js │ │ ├── rscriptType.js │ │ └── rtagName.js │ └── wrapMap.js │ ├── offset.js │ ├── outro.js │ ├── queue.js │ ├── queue │ └── delay.js │ ├── selector-native.js │ ├── selector-sizzle.js │ ├── selector.js │ ├── serialize.js │ ├── support.js │ ├── traversing.js │ ├── traversing │ ├── findFilter.js │ └── var │ │ ├── dir.js │ │ ├── rneedsContext.js │ │ └── siblings.js │ ├── var │ ├── arr.js │ ├── class2type.js │ ├── concat.js │ ├── deletedIds.js │ ├── document.js │ ├── documentElement.js │ ├── hasOwn.js │ ├── indexOf.js │ ├── pnum.js │ ├── push.js │ ├── rcssNum.js │ ├── rnotwhite.js │ ├── slice.js │ ├── support.js │ └── toString.js │ └── wrap.js ├── _layouts └── default.html └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/LICENSE -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_ADAL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_ADAL.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_AppRegConfirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_AppRegConfirm.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_AppRegSignin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_AppRegSignin.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_Consent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_Consent.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_Debug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_Debug1.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_Debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_Debug2.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_Debug3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_Debug3.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_Signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_Signin.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_SlnExplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_SlnExplorer.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Images/Mod1_Targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Images/Mod1_Targets.png -------------------------------------------------------------------------------- /Module1-MsGraphMobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/README.md -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Setup.cmd -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Setup/Cleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Setup/Cleanup.cmd -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Setup/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Setup/Setup.cmd -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Setup/scripts/InstallCodeSnippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Setup/scripts/InstallCodeSnippets.cmd -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Setup/scripts/installCodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Setup/scripts/installCodeSnippets.ps1 -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Setup/scripts/snippets/OfficeSnippets.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Setup/scripts/snippets/OfficeSnippets.vsix -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Slides/Module1-MsGraphMobile.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Slides/Module1-MsGraphMobile.pptx -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/.gitignore -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/bower.json -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/build.json -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/config.xml -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/package.json -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/taco.json: -------------------------------------------------------------------------------- 1 | { 2 | "cordova-cli": "5.3.3" 3 | } 4 | -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/www/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/www/app/app.js -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/www/css/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/Begin/MobileGroupExplorer/www/index.html -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/.gitignore -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/bower.json -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/build.json -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/config.xml -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/package.json -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/plugins/cordova-plugin-ms-adal/src/android/CordovaADAL/ant.properties: -------------------------------------------------------------------------------- 1 | android.library.reference.1=../../CordovaLib -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/taco.json: -------------------------------------------------------------------------------- 1 | { 2 | "cordova-cli": "5.3.3" 3 | } 4 | -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/www/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/www/app/app.js -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/www/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/www/css/app.css -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/www/css/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module1-MsGraphMobile/Source/Ex1/End/MobileGroupExplorer/www/index.html -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_AppPortal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_AppPortal.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_AppRegConfirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_AppRegConfirm.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_AppRegSignin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_AppRegSignin.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_AppRegV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_AppRegV2.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_Apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_Apps.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_Authenticated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_Authenticated.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_Consent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_Consent.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_ContactsHardCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_ContactsHardCode.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_NewProj1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_NewProj1.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_NewProj2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_NewProj2.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_NoAuth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_NoAuth.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_ProjProp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_ProjProp.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_ProjStruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_ProjStruct.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_Redirect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_Redirect.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_Secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_Secret.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_SignIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_SignIn.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_complete.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_platforms.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Images/Mod2_ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Images/Mod2_ss.png -------------------------------------------------------------------------------- /Module2-MsGraphWeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Setup.cmd -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Setup/Cleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Setup/Cleanup.cmd -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Setup/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Setup/Setup.cmd -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Setup/scripts/InstallCodeSnippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Setup/scripts/InstallCodeSnippets.cmd -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Setup/scripts/installCodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Setup/scripts/installCodeSnippets.ps1 -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Setup/scripts/snippets/OfficeSnippets.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Setup/scripts/snippets/OfficeSnippets.vsix -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Slides/Module2-MsGraphWeb.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Slides/Module2-MsGraphWeb.pptx -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "lib" 3 | } -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/app/app.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/app/templates/view-contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/app/templates/view-contacts.html -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/app/templates/view-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/app/templates/view-login.html -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/index.html -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/angular-route.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/index.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular-route/package.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular-csp.css -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular.min.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/angular.min.js.map -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/index.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/angular/package.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/grunt/configBridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/grunt/configBridge.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/affix.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/alert.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/button.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/modal.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/popover.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/tab.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/js/transition.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/badges.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/close.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/code.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/forms.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/grid.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/labels.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/media.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/alerts.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/labels.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/panels.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/resize.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/modals.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/navs.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/pager.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/panels.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/print.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/tables.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/theme.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/type.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/variables.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/less/wells.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/package.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/bootstrap/package.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/.jshintrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/data.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/data/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/data/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/effects/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/effects/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/intro.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/Begin/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "lib" 3 | } -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/app/app.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/app/templates/view-contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/app/templates/view-contacts.html -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/app/templates/view-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/app/templates/view-login.html -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/index.html -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/Gruntfile.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/LICENSE.txt -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/changelog.txt -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/contributing.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/dist/adal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/dist/adal.min.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/karma.conf.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/lib/adal-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/lib/adal-angular.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/lib/adal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/lib/adal.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/adal-angular/package.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/angular-route.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/index.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular-route/package.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular-csp.css -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular.min.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/angular.min.js.map -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/index.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/angular/package.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/CHANGELOG.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/affix.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/alert.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/button.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/modal.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/popover.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/tab.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/js/transition.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/badges.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/close.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/code.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/forms.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/grid.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/labels.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/media.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/modals.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/navs.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/pager.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/panels.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/print.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/tables.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/theme.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/type.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/variables.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/less/wells.less -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/package.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/bootstrap/package.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/AUTHORS.txt -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/README.md -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.slim.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/dist/jquery.slim.min.map -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/.jshintrc -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/parseJSON.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/var/nonce.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/attr.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/classes.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/prop.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/attributes/val.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/callbacks.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/DOMEval.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/access.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/init.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/parseHTML.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/ready.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/core/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/defaultDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/defaultDisplay.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/showHide.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/isHidden.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/rmargin.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/css/var/swap.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/Data.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/accepts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/accepts.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/deferred.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/deprecated.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/dimensions.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/effects.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/effects/Tween.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/effects/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/effects/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/alias.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/focusin.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/event/trigger.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/exports/global.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/intro.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/jquery.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/manipulation.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/offset.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/queue.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/selector-native.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/selector-sizzle.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/serialize.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/traversing.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/concat.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/push.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/rcssNum.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/rnotwhite.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/slice.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/support.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/var/toString.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex1/End/lib/jquery/src/wrap.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts.sln -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Models/ContactModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Models/ContactModel.cs -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/MyContacts.xproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/MyContacts.xproj -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Project_Readme.html -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Startup.cs -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Utils/SettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Utils/SettingsHelper.cs -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/appsettings.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/bower.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/gulpfile.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/package.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/project.json -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/_references.js -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/css/site.css -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module2-MsGraphWeb/Source/Ex2/End/MyContacts/wwwroot/web.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_ActivityEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_ActivityEmpty.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_AddView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_AddView.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_AddinCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_AddinCommand.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_AddinEO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_AddinEO.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_AgaveView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_AgaveView.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_AppRegSignin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_AppRegSignin.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_CertError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_CertError.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Connected.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Consent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Consent.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Convert.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_DataChanged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_DataChanged.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_ExcelTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_ExcelTable.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Gulp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Gulp.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_InsertAddin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_InsertAddin.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_InstallCert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_InstallCert.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Mail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Mail1.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Mail2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Mail2.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_MailTaskPane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_MailTaskPane.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_ManageAddins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_ManageAddins.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_NewExcel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_NewExcel.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_PubDB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_PubDB1.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_PubDB2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_PubDB2.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_RegSuccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_RegSuccess.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Share.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Share2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Share2.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Share3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Share3.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_SharedFolderOption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_SharedFolderOption.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_SlnWithOffice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_SlnWithOffice.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_TrustedCats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_TrustedCats.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_UploadManifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_UploadManifest.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Wizard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Wizard1.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Wizard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Wizard2.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_Yeoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_Yeoman.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_debug.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Images/Mod3_localhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Images/Mod3_localhost.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/README.md -------------------------------------------------------------------------------- /Module3-OfficeAddins/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Setup.cmd -------------------------------------------------------------------------------- /Module3-OfficeAddins/Setup/Cleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Setup/Cleanup.cmd -------------------------------------------------------------------------------- /Module3-OfficeAddins/Setup/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Setup/Setup.cmd -------------------------------------------------------------------------------- /Module3-OfficeAddins/Setup/scripts/InstallCodeSnippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Setup/scripts/InstallCodeSnippets.cmd -------------------------------------------------------------------------------- /Module3-OfficeAddins/Setup/scripts/installCodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Setup/scripts/installCodeSnippets.ps1 -------------------------------------------------------------------------------- /Module3-OfficeAddins/Setup/scripts/snippets/OfficeSnippets.vsix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Setup/scripts/snippets/OfficeSnippets.vsix -------------------------------------------------------------------------------- /Module3-OfficeAddins/Slides/Module3-OfficeAddins.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Slides/Module3-OfficeAddins.pptx -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM.Data/Comment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM.Data/Comment.sql -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM.sln -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Content/Site.css -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Global.asax -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Global.asax.cs -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/MailCRM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/MailCRM.csproj -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Startup.cs -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Views/Web.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Web.Debug.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/Web.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/favicon.ico -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/Begin/MailCRM/MailCRM/packages.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM.Data/Comment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM.Data/Comment.sql -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM.sln -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/App_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/App_README.txt -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Content/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Content/Office.css -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Content/Site.css -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Global.asax -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Global.asax.cs -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/MailCRM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/MailCRM.csproj -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Models/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Models/Comment.cs -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Scripts/respond.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Startup.cs -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Views/Web.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Web.Debug.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Web.Release.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/Web.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/favicon.ico -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex1/End/MailCRM/MailCRM/packages.config -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "./bower_components" 3 | } -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/.gitignore -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/app.css -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/app.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/home/home.css: -------------------------------------------------------------------------------- 1 | /* Page-specific styling */ 2 | 3 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/home/home.html -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/app/home/home.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | 2 | })( window ); 3 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower_components/jquery/test/data/badcall.js: -------------------------------------------------------------------------------- 1 | undefined(); 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower_components/jquery/test/data/badjson.js: -------------------------------------------------------------------------------- 1 | {bad: toTheBone} 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower_components/jquery/test/data/echoData.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower_components/jquery/test/data/echoQuery.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower_components/jquery/test/data/errorWithText.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower_components/jquery/test/data/readywaitasset.js: -------------------------------------------------------------------------------- 1 | var delayedMessage = "It worked!"; 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/bower_components/jquery/test/unit/deprecated.js: -------------------------------------------------------------------------------- 1 | module("deprecated"); 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/content/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/content/Office.css -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/gulpfile.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/images/close.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/jsconfig.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/manifest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/manifest.xsd -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/package.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/tsconfig.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex2/End/ContactCleanup/tsd.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "./bower_components" 3 | } -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/.gitignore -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/app/app.css -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/app/app.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/app/home/home.css: -------------------------------------------------------------------------------- 1 | /* Page-specific styling */ 2 | 3 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/app/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/app/home/home.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | 2 | })( window ); 3 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower_components/jquery/test/data/badcall.js: -------------------------------------------------------------------------------- 1 | undefined(); 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower_components/jquery/test/data/badjson.js: -------------------------------------------------------------------------------- 1 | {bad: toTheBone} 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower_components/jquery/test/data/echoData.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower_components/jquery/test/data/echoQuery.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower_components/jquery/test/data/errorWithText.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower_components/jquery/test/data/readywaitasset.js: -------------------------------------------------------------------------------- 1 | var delayedMessage = "It worked!"; 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/bower_components/jquery/test/unit/deprecated.js: -------------------------------------------------------------------------------- 1 | module("deprecated"); 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/gulpfile.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/images/close.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/jsconfig.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/manifest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/manifest.xsd -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/package.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/tsconfig.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/Begin/ContactCleanup/tsd.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "./bower_components" 3 | } -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/.gitignore -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/app.css -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/app.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/auth/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/auth/auth.html -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/home/home.css: -------------------------------------------------------------------------------- 1 | /* Page-specific styling */ 2 | 3 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/home/home.html -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/home/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/app/home/home.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | 2 | })( window ); 3 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower_components/jquery/test/data/badcall.js: -------------------------------------------------------------------------------- 1 | undefined(); 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower_components/jquery/test/data/badjson.js: -------------------------------------------------------------------------------- 1 | {bad: toTheBone} 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower_components/jquery/test/data/echoData.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower_components/jquery/test/data/echoQuery.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower_components/jquery/test/data/errorWithText.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower_components/jquery/test/data/readywaitasset.js: -------------------------------------------------------------------------------- 1 | var delayedMessage = "It worked!"; 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/bower_components/jquery/test/unit/deprecated.js: -------------------------------------------------------------------------------- 1 | module("deprecated"); 2 | -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/content/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/content/Office.css -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/gulpfile.js -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/images/close.png -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/jsconfig.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/manifest.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/manifest.xsd -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/package.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/tsconfig.json -------------------------------------------------------------------------------- /Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module3-OfficeAddins/Source/Ex3/End/ContactCleanup/tsd.json -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_AddGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_AddGroup.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_CallbackCtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_CallbackCtrl.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_Card.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectBtn.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectMsg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectMsg.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectTo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectTo.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectToGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectToGroup.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_Connectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_Connectors.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectorsAdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectorsAdd.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectorsForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectorsForm.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectorsMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ConnectorsMenu.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_DbCon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_DbCon2.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_GroupSelect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_GroupSelect.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_Groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_Groups.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_HookDone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_HookDone.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_IncomingConfirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_IncomingConfirmation.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_IncomingWebhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_IncomingWebhook.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_Listings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_Listings.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ManualConfirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ManualConfirm.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_ManualHook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_ManualHook.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_PubDB1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_PubDB1.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_SkypeChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_SkypeChat.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_Twitter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_Twitter1.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_Twitter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_Twitter2.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_Twitter3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_Twitter3.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_presence1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_presence1.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_presence2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_presence2.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_signin.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Images/Mod4_tickets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Images/Mod4_tickets.png -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/README.md -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Setup.cmd -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Setup/Cleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Setup/Cleanup.cmd -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Setup/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Setup/Setup.cmd -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Setup/scripts/InstallCodeSnippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Setup/scripts/InstallCodeSnippets.cmd -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Setup/scripts/installCodeSnippets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Setup/scripts/installCodeSnippets.ps1 -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex1/Begin/BillsListASPNET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Source/Ex1/Begin/BillsListASPNET.sln -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex1/End/BillsListASPNET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Source/Ex1/End/BillsListASPNET.sln -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "lib" 3 | } -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/LICENSE -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/lib/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/Begin/SkypeHelpdesk/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "lib" 3 | } -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/LICENSE -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/app/app.js -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/auth.html -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/bower.json -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/index.html -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/lib/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | return jQuery; 2 | })); 3 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() {} ); 2 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | // [[Class]] -> type pairs 4 | return {}; 5 | } ); 6 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/lib/jquery/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return []; 3 | } ); 4 | -------------------------------------------------------------------------------- /Module4-O365ConnectorsAndSkype/Source/Ex2/End/SkypeHelpdesk/lib/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Microsoft-Build-2016/CodeLabs-Office/HEAD/style.css --------------------------------------------------------------------------------