├── FunnelChart ├── Funnel Tutorial │ ├── Funnel.sln │ ├── Funnel.v12.suo │ ├── Funnel │ │ ├── Funnel.csproj │ │ ├── Funnel.csproj.user │ │ └── FunnelManifest │ │ │ ├── Funnel.xml │ │ │ └── SharePointProjectItem.spdata │ ├── FunnelWeb │ │ ├── App │ │ │ ├── App.css │ │ │ ├── App.js │ │ │ ├── Home │ │ │ │ ├── Home.css │ │ │ │ ├── Home.html │ │ │ │ └── Home.js │ │ │ └── d3-funnel-charts.js │ │ ├── Content │ │ │ ├── Office.css │ │ │ └── OfficeThemes.css │ │ ├── FunnelWeb.csproj │ │ ├── Images │ │ │ └── Close.png │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── Office │ │ │ │ ├── 1.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 │ │ │ │ │ ├── ca-es │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── eu-es │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── gl-es │ │ │ │ │ │ ├── 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-cyrl-cs │ │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ │ ├── office_strings.js │ │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ │ └── outlook_strings.js │ │ │ │ │ ├── sr-cyrl-rs │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── sr-latn-rs │ │ │ │ │ │ ├── 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 │ │ │ │ ├── MicrosoftAjax.js │ │ │ │ └── metadata │ │ │ │ │ ├── endpoints.xml │ │ │ │ │ └── features.xml │ │ │ ├── _officeintellisense.js │ │ │ ├── _references.js │ │ │ ├── jquery-1.9.1.intellisense.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ └── jquery-1.9.1.min.map │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ └── Web.config │ └── packages │ │ ├── Microsoft.Office.js.1.1.0.6 │ │ ├── Content │ │ │ ├── Content │ │ │ │ └── OfficeThemes.css │ │ │ └── Scripts │ │ │ │ └── Office │ │ │ │ ├── 1.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 │ │ │ │ ├── ca-es │ │ │ │ │ ├── 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 │ │ │ │ ├── eu-es │ │ │ │ │ ├── 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 │ │ │ │ ├── gl-es │ │ │ │ │ ├── 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-cyrl-cs │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sr-cyrl-rs │ │ │ │ │ ├── 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 │ │ │ │ ├── sr-latn-rs │ │ │ │ │ ├── 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 │ │ ├── Microsoft.Office.js.1.1.0.6.nupkg │ │ └── Tools │ │ │ ├── common.ps1 │ │ │ ├── install.ps1 │ │ │ └── uninstall.ps1 │ │ ├── jQuery.1.9.1 │ │ ├── Content │ │ │ └── Scripts │ │ │ │ ├── jquery-1.9.1-vsdoc.js │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ └── jquery-1.9.1.min.map │ │ ├── Tools │ │ │ ├── common.ps1 │ │ │ ├── install.ps1 │ │ │ ├── jquery-1.9.1.intellisense.js │ │ │ └── uninstall.ps1 │ │ └── jQuery.1.9.1.nupkg │ │ └── repositories.config └── README.md ├── ModernTrend ├── ModernTrend.sln ├── ModernTrend │ ├── ModernTrend.csproj │ └── ModernTrendManifest │ │ ├── ModernTrend.xml │ │ └── SharePointProjectItem.spdata ├── ModernTrendWeb │ ├── ModernTrendWeb.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── content │ │ └── en-us │ │ │ ├── ModernTrend.css │ │ │ └── Office.css │ ├── images │ │ ├── AppIcon.png │ │ ├── Back.svg │ │ ├── Back_hover.svg │ │ ├── Back_press.svg │ │ ├── Data.svg │ │ ├── Data_hover.svg │ │ ├── Data_press.svg │ │ ├── Setting.svg │ │ ├── Setting_hover.svg │ │ └── Setting_press.svg │ ├── layouts │ │ └── layouts.json │ ├── pages │ │ └── ModernTrend.html │ ├── resources │ │ └── en-us │ │ │ └── resources.js │ ├── scripts │ │ ├── UX │ │ │ ├── BindingPaneSpecific.ts │ │ │ ├── DataPane.ts │ │ │ ├── Home.ts │ │ │ ├── SettingPane.ts │ │ │ └── shared │ │ │ │ ├── BindingPane.ts │ │ │ │ └── Galleries.ts │ │ ├── app.ts │ │ ├── logic │ │ │ ├── configurator.agave.ts │ │ │ ├── data.binder.agave.ts │ │ │ ├── data.convertor.agave.ts │ │ │ ├── layouter.trends.ts │ │ │ ├── plotter.trends.ts │ │ │ ├── predefinedSKUs.ts │ │ │ └── shared │ │ │ │ ├── chart.ts │ │ │ │ ├── config.ts │ │ │ │ ├── controller.ts │ │ │ │ ├── data.ts │ │ │ │ ├── decoration.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── skus.ts │ │ │ │ ├── tool.ts │ │ │ │ ├── utils.ts │ │ │ │ └── validate.ts │ │ ├── opensource │ │ │ └── d3 │ │ │ │ └── d3.v3.min.js │ │ └── strings │ │ │ └── stringadapter.ts │ └── themes │ │ ├── blackblue.css │ │ ├── blackblue.png │ │ ├── blackwhite.css │ │ ├── blackwhite.png │ │ ├── check-black.svg │ │ ├── check-white.svg │ │ ├── default-greenwhite.css │ │ ├── default-greenwhite.png │ │ ├── themes.json │ │ ├── whiteblack.css │ │ ├── whiteblack.png │ │ ├── whiterose.css │ │ ├── whiterose.png │ │ ├── yellowblack.css │ │ └── yellowblack.png ├── README.md └── license.txt ├── PeopleGraph ├── PeopleGraph.sln ├── PeopleGraph │ ├── PeopleGraph.csproj │ └── PeopleGraphManifest │ │ ├── PeopleGraph.xml │ │ └── SharePointProjectItem.spdata ├── PeopleGraphWeb │ ├── PeopleGraphWeb.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SKUs │ │ ├── peoplebar-callout.png │ │ ├── peoplebar-classic.png │ │ └── peoplebar-giant.png │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── content │ │ └── en-us │ │ │ ├── Office.css │ │ │ └── PeopleGraph.css │ ├── images │ │ ├── AppIcon.png │ │ ├── Back.svg │ │ ├── Back_hover.svg │ │ ├── Back_press.svg │ │ ├── Close.png │ │ ├── Close_hover.png │ │ ├── Data.svg │ │ ├── Data_hover.svg │ │ ├── Data_press.svg │ │ ├── Setting.svg │ │ ├── Setting_hover.svg │ │ └── Setting_press.svg │ ├── layouts │ │ └── layouts.json │ ├── pages │ │ └── PeopleGraph.html │ ├── resources │ │ └── en-us │ │ │ └── resources.js │ ├── scripts │ │ ├── UX │ │ │ ├── BaseNotification.ts │ │ │ ├── BindingPaneSpecific.ts │ │ │ ├── DataPane.ts │ │ │ ├── Home.ts │ │ │ ├── Notification.ts │ │ │ ├── SettingPane.ts │ │ │ └── shared │ │ │ │ ├── BindingPane.ts │ │ │ │ └── Galleries.ts │ │ ├── app.ts │ │ ├── logic │ │ │ ├── configurator.agave.ts │ │ │ ├── data.binder.agave.ts │ │ │ ├── data.convertor.peoplebar.ts │ │ │ ├── layouter.base.d3.ts │ │ │ ├── layouter.callout.d3.ts │ │ │ ├── layouter.classic.d3.ts │ │ │ ├── layouter.giant.d3.ts │ │ │ ├── plotter.peoplebarbase.d3.ts │ │ │ ├── plotter.peoplebarcallout.d3.ts │ │ │ ├── plotter.peoplebarclassic.d3.ts │ │ │ ├── plotter.peoplebargiant.d3.ts │ │ │ ├── predefinedSKUs.ts │ │ │ └── shared │ │ │ │ ├── chart.ts │ │ │ │ ├── config.ts │ │ │ │ ├── controller.ts │ │ │ │ ├── cookie.ts │ │ │ │ ├── data.ts │ │ │ │ ├── decoration.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── skus.ts │ │ │ │ ├── tool.ts │ │ │ │ ├── utils.ts │ │ │ │ └── validate.ts │ │ ├── opensource │ │ │ └── d3 │ │ │ │ └── d3.v3.min.js │ │ └── strings │ │ │ └── stringadapter.ts │ ├── shapes │ │ ├── box.png │ │ ├── chi-pao.png │ │ ├── clock.png │ │ ├── cloth.png │ │ ├── dance-people.png │ │ ├── diamond.png │ │ ├── dolphin.png │ │ ├── dress.png │ │ ├── heart.png │ │ ├── laptop.png │ │ ├── moneybag.png │ │ ├── muscle-people.png │ │ ├── shapes.json │ │ ├── smile-people.png │ │ ├── stand-people.png │ │ ├── star.png │ │ └── watch.png │ └── themes │ │ ├── callout-blackgrey.css │ │ ├── callout-blackgrey.png │ │ ├── callout-blackgreyred.css │ │ ├── callout-blackgreyred.png │ │ ├── callout-blackyellow.css │ │ ├── callout-blackyellow.png │ │ ├── callout-blueblack.css │ │ ├── callout-blueblack.png │ │ ├── callout-greengrey.css │ │ ├── callout-greengrey.png │ │ ├── callout-roseblue.css │ │ ├── callout-roseblue.png │ │ ├── callout-whitered.css │ │ ├── callout-whitered.png │ │ ├── classic-blackyellow.css │ │ ├── classic-blackyellow.png │ │ ├── classic-bluegrey.css │ │ ├── classic-bluegrey.png │ │ ├── classic-bluewhite.css │ │ ├── classic-bluewhite.png │ │ ├── classic-greengrey.css │ │ ├── classic-greengrey.png │ │ ├── classic-redwhite.css │ │ ├── classic-redwhite.png │ │ ├── classic-rosewhite.css │ │ ├── classic-rosewhite.png │ │ ├── classic-whitered.css │ │ ├── classic-whitered.png │ │ ├── giant-greengrey.css │ │ ├── giant-greengrey.png │ │ ├── giant-redwhite.css │ │ ├── giant-redwhite.png │ │ ├── giant-redwhiteblack.css │ │ ├── giant-redwhiteblack.png │ │ ├── giant-roseblue.css │ │ ├── giant-roseblue.png │ │ ├── giant-rosewhite.css │ │ ├── giant-rosewhite.png │ │ ├── giant-whiterose.css │ │ ├── giant-whiterose.png │ │ ├── giant-yellowblue.css │ │ ├── giant-yellowblue.png │ │ └── themes.json ├── README.md └── license.txt ├── README.md └── Wikipedia ├── README.md ├── SandboxWeb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── MyExtensions │ │ └── MyWebExtension.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── SandboxWeb.vbproj ├── Scripts │ ├── en-us │ │ └── sandbox_strings.js │ └── sandbox.js ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── sandbox.html ├── Wikipedia_dev.sln ├── Wikipedia_dev ├── Wikipedia_dev.vbproj └── Wikipedia_dev.xml │ ├── SharePointProjectItem.spdata │ └── Wikipedia_dev.xml ├── Wikipedia_devWeb ├── Images │ ├── BackButtonHover_24x.png │ ├── BackButton_24x.png │ ├── CheckmarkChecked_16x.png │ ├── CheckmarkNotCheckedd_16x.png │ ├── ClosePaneGlyphServerwhite_16x.png │ ├── InsetToDoc_24x.png │ ├── InsetToDoc_image_24x.png │ ├── OptionsWordFmtSpaces_16x16x32.png │ ├── SearchMagnifyingGlass_20x20x32.png │ ├── collapsetable.png │ ├── expandtable.png │ ├── loading.gif │ ├── logo.png │ ├── options.png │ └── wikilogo_32x32.png ├── My Project │ └── AssemblyInfo.vb ├── Scripts │ ├── Wikipedia_navigation.js │ ├── Wikipedia_tabs.js │ ├── Wikipedia_ui.js │ ├── Wikipedia_utils.js │ ├── Wikipedia_vars.js │ └── en-us │ │ └── Strings.js ├── Styles │ ├── App.css │ ├── OxgAgaveStyle.css │ └── OxgNavigationStyle.css ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── Wikipedia_dev.html └── Wikipedia_devWeb.vbproj └── license.txt /FunnelChart/Funnel Tutorial/Funnel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/Funnel.sln -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/Funnel.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/Funnel.v12.suo -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/Funnel/Funnel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/Funnel/Funnel.csproj -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/Funnel/Funnel.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/Funnel/Funnel.csproj.user -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/Funnel/FunnelManifest/Funnel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/Funnel/FunnelManifest/Funnel.xml -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/Funnel/FunnelManifest/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/Funnel/FunnelManifest/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/App/App.css -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/App/App.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/App/Home/Home.css: -------------------------------------------------------------------------------- 1 | /* Page-specific styling */ 2 | 3 | -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/App/Home/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/App/Home/Home.html -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/App/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/App/Home/Home.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/App/d3-funnel-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/App/d3-funnel-charts.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Content/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Content/Office.css -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Content/OfficeThemes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Content/OfficeThemes.css -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/FunnelWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/FunnelWeb.csproj -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Images/Close.png -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/access-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/access-web-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/access-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/access-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ar-sa/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ar-sa/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ar-sa/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ar-sa/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ar-sa/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ar-sa/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ar-sa/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ar-sa/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/bg-bg/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/bg-bg/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/bg-bg/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/bg-bg/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/bg-bg/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/bg-bg/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/bg-bg/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/bg-bg/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ca-es/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ca-es/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ca-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ca-es/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ca-es/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ca-es/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ca-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ca-es/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/cs-cz/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/cs-cz/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/cs-cz/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/cs-cz/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/cs-cz/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/cs-cz/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/cs-cz/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/cs-cz/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/da-dk/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/da-dk/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/da-dk/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/da-dk/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/da-dk/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/da-dk/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/da-dk/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/da-dk/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/de-de/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/de-de/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/de-de/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/de-de/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/de-de/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/de-de/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/de-de/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/de-de/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/el-gr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/el-gr/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/el-gr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/el-gr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/el-gr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/el-gr/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/el-gr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/el-gr/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/en-us/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/en-us/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/en-us/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/en-us/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/en-us/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/en-us/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/en-us/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/en-us/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/es-es/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/es-es/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/es-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/es-es/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/es-es/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/es-es/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/es-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/es-es/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/et-ee/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/et-ee/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/et-ee/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/et-ee/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/et-ee/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/et-ee/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/et-ee/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/et-ee/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/eu-es/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/eu-es/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/eu-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/eu-es/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/eu-es/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/eu-es/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/eu-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/eu-es/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-ios-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-ios-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-ios-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-web-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-win32-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excel-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelios-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelios-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelios-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelwebapp-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelwebapp-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelwebapp-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelwebapp-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelwebapp-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelwebapp-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelwebapp-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/excelwebapp-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fi-fi/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fi-fi/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fi-fi/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fi-fi/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fi-fi/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fi-fi/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fi-fi/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fi-fi/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fr-fr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fr-fr/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fr-fr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fr-fr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fr-fr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fr-fr/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fr-fr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/fr-fr/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/gl-es/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/gl-es/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/gl-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/gl-es/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/gl-es/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/gl-es/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/gl-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/gl-es/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/he-il/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/he-il/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/he-il/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/he-il/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/he-il/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/he-il/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/he-il/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/he-il/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hi-in/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hi-in/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hi-in/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hi-in/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hi-in/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hi-in/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hi-in/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hi-in/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hr-hr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hr-hr/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hr-hr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hr-hr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hr-hr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hr-hr/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hr-hr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hr-hr/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hu-hu/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hu-hu/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hu-hu/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hu-hu/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hu-hu/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hu-hu/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hu-hu/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/hu-hu/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/id-id/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/id-id/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/id-id/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/id-id/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/id-id/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/id-id/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/id-id/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/id-id/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/it-it/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/it-it/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/it-it/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/it-it/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/it-it/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/it-it/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/it-it/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/it-it/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ja-jp/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ja-jp/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ja-jp/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ja-jp/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ja-jp/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ja-jp/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ja-jp/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ja-jp/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/kk-kz/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/kk-kz/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/kk-kz/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/kk-kz/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/kk-kz/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/kk-kz/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/kk-kz/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/kk-kz/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ko-kr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ko-kr/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ko-kr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ko-kr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ko-kr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ko-kr/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ko-kr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ko-kr/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lt-lt/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lt-lt/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lt-lt/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lt-lt/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lt-lt/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lt-lt/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lt-lt/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lt-lt/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lv-lv/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lv-lv/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lv-lv/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lv-lv/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lv-lv/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lv-lv/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lv-lv/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/lv-lv/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ms-my/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ms-my/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ms-my/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ms-my/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ms-my/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ms-my/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ms-my/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ms-my/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nb-no/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nb-no/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nb-no/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nb-no/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nb-no/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nb-no/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nb-no/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nb-no/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nl-nl/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nl-nl/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nl-nl/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nl-nl/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nl-nl/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nl-nl/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nl-nl/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/nl-nl/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/o15apptofilemappingtable.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/o15apptofilemappingtable.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/o15apptofilemappingtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/o15apptofilemappingtable.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/office-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/office-vsdoc.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/office.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/office.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/office.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/office.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.02.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.02.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.02.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-web-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-win32-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-win32.debug-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlook-win32.debug-vsdoc.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlookwebapp-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlookwebapp-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlookwebapp-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlookwebapp-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlookwebapp-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlookwebapp-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlookwebapp-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/outlookwebapp-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pl-pl/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pl-pl/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pl-pl/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pl-pl/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pl-pl/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pl-pl/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pl-pl/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pl-pl/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-ios-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-ios-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-ios-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-web-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-win32-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpoint-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpointios-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpointios-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpointios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/powerpointios-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-win32-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/project-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-br/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-br/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-br/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-br/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-br/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-br/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-br/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-br/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-pt/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-pt/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-pt/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-pt/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-pt/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-pt/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-pt/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/pt-pt/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ro-ro/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ro-ro/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ro-ro/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ro-ro/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ro-ro/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ro-ro/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ro-ro/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ro-ro/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ru-ru/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ru-ru/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ru-ru/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ru-ru/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ru-ru/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ru-ru/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ru-ru/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/ru-ru/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sk-sk/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sk-sk/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sk-sk/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sk-sk/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sk-sk/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sk-sk/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sk-sk/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sk-sk/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sl-si/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sl-si/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sl-si/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sl-si/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sl-si/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sl-si/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sl-si/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sl-si/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-cs/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-cs/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-cs/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-cs/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-cs/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-cs/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-cs/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-cs/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-rs/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-rs/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-rs/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-rs/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-rs/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-rs/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-rs/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-cyrl-rs/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-cs/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-cs/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-cs/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-cs/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-cs/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-cs/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-cs/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-cs/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-rs/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-rs/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-rs/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-rs/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-rs/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-rs/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-rs/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sr-latn-rs/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sv-se/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sv-se/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sv-se/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sv-se/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sv-se/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sv-se/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sv-se/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/sv-se/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/th-th/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/th-th/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/th-th/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/th-th/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/th-th/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/th-th/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/th-th/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/th-th/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/tr-tr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/tr-tr/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/tr-tr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/tr-tr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/tr-tr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/tr-tr/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/tr-tr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/tr-tr/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/uk-ua/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/uk-ua/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/uk-ua/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/uk-ua/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/uk-ua/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/uk-ua/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/uk-ua/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/uk-ua/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/vi-vn/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/vi-vn/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/vi-vn/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/vi-vn/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/vi-vn/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/vi-vn/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/vi-vn/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/vi-vn/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-ios-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-ios-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-ios-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-web-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-win32-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/word-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/wordios-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/wordios-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/wordios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/wordios-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-cn/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-cn/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-cn/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-cn/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-cn/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-cn/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-cn/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-cn/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-tw/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-tw/office_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-tw/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-tw/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-tw/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-tw/outlook_strings.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-tw/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/1.1/zh-tw/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/MicrosoftAjax.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/metadata/endpoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/metadata/endpoints.xml -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/metadata/features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/Office/metadata/features.xml -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/_officeintellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/_officeintellisense.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/_references.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/jquery-1.9.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/jquery-1.9.1.intellisense.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/jquery-1.9.1.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/jquery-1.9.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Scripts/jquery-1.9.1.min.map -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Web.Debug.config -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Web.Release.config -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/FunnelWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/FunnelWeb/Web.config -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Content/OfficeThemes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Content/OfficeThemes.css -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/access-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/access-web-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/access-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/access-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ar-sa/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ar-sa/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ar-sa/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ar-sa/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/bg-bg/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/bg-bg/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/bg-bg/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/bg-bg/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ca-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ca-es/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ca-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ca-es/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/cs-cz/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/cs-cz/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/cs-cz/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/cs-cz/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/da-dk/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/da-dk/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/da-dk/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/da-dk/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/de-de/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/de-de/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/de-de/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/de-de/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/el-gr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/el-gr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/el-gr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/el-gr/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/en-us/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/en-us/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/en-us/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/en-us/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/es-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/es-es/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/es-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/es-es/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/et-ee/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/et-ee/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/et-ee/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/et-ee/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/eu-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/eu-es/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/eu-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/eu-es/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-ios-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-ios-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-ios-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-web-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-win32-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excel-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelios-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelios-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelios-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelwebapp-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelwebapp-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelwebapp-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelwebapp-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelwebapp-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelwebapp-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelwebapp-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/excelwebapp-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/fi-fi/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/fi-fi/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/fi-fi/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/fi-fi/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/fr-fr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/fr-fr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/fr-fr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/fr-fr/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/gl-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/gl-es/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/gl-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/gl-es/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/he-il/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/he-il/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/he-il/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/he-il/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hi-in/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hi-in/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hi-in/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hi-in/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hr-hr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hr-hr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hr-hr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hr-hr/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hu-hu/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hu-hu/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hu-hu/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/hu-hu/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/id-id/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/id-id/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/id-id/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/id-id/outlook_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/it-it/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/it-it/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ja-jp/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ja-jp/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/kk-kz/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/kk-kz/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ko-kr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ko-kr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/lt-lt/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/lt-lt/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/lv-lv/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/lv-lv/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ms-my/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ms-my/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/nb-no/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/nb-no/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/nl-nl/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/nl-nl/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/office-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/office-vsdoc.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/office.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/office.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/office.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/office.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.02.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.02.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.02.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlook-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlookwebapp-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlookwebapp-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlookwebapp-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/outlookwebapp-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/pl-pl/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/pl-pl/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-ios-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpoint-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpointios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/powerpointios-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/project-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/pt-br/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/pt-br/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/pt-pt/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/pt-pt/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ro-ro/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ro-ro/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ru-ru/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/ru-ru/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/sk-sk/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/sk-sk/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/sl-si/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/sl-si/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/sv-se/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/sv-se/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/th-th/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/th-th/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/tr-tr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/tr-tr/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/uk-ua/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/uk-ua/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/vi-vn/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/vi-vn/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-15.01.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-15.01.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-ios-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-ios-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-ios-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-web-16.00.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-web-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/word-win32-16.00.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/wordios-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/wordios-15.debug.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/wordios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/wordios-15.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/zh-cn/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/zh-cn/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/zh-tw/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/1.1/zh-tw/office_strings.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/metadata/endpoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/metadata/endpoints.xml -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/metadata/features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Content/Scripts/Office/metadata/features.xml -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Microsoft.Office.js.1.1.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Microsoft.Office.js.1.1.0.6.nupkg -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Tools/common.ps1 -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Tools/install.ps1 -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/Microsoft.Office.js.1.1.0.6/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Content/Scripts/jquery-1.9.1-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Content/Scripts/jquery-1.9.1-vsdoc.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Content/Scripts/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Content/Scripts/jquery-1.9.1.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Content/Scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Content/Scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Content/Scripts/jquery-1.9.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Content/Scripts/jquery-1.9.1.min.map -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Tools/common.ps1 -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Tools/install.ps1 -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Tools/jquery-1.9.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Tools/jquery-1.9.1.intellisense.js -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/jQuery.1.9.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/jQuery.1.9.1/jQuery.1.9.1.nupkg -------------------------------------------------------------------------------- /FunnelChart/Funnel Tutorial/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/Funnel Tutorial/packages/repositories.config -------------------------------------------------------------------------------- /FunnelChart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/FunnelChart/README.md -------------------------------------------------------------------------------- /ModernTrend/ModernTrend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrend.sln -------------------------------------------------------------------------------- /ModernTrend/ModernTrend/ModernTrend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrend/ModernTrend.csproj -------------------------------------------------------------------------------- /ModernTrend/ModernTrend/ModernTrendManifest/ModernTrend.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrend/ModernTrendManifest/ModernTrend.xml -------------------------------------------------------------------------------- /ModernTrend/ModernTrend/ModernTrendManifest/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrend/ModernTrendManifest/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/ModernTrendWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/ModernTrendWeb.csproj -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/Web.Debug.config -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/Web.Release.config -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/Web.config -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/content/en-us/ModernTrend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/content/en-us/ModernTrend.css -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/content/en-us/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/content/en-us/Office.css -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/AppIcon.png -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Back.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Back_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Back_hover.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Back_press.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Back_press.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Data.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Data_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Data_hover.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Data_press.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Data_press.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Setting.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Setting_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Setting_hover.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/images/Setting_press.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/images/Setting_press.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/layouts/layouts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/layouts/layouts.json -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/pages/ModernTrend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/pages/ModernTrend.html -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/resources/en-us/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/resources/en-us/resources.js -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/UX/BindingPaneSpecific.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/UX/BindingPaneSpecific.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/UX/DataPane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/UX/DataPane.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/UX/Home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/UX/Home.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/UX/SettingPane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/UX/SettingPane.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/UX/shared/BindingPane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/UX/shared/BindingPane.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/UX/shared/Galleries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/UX/shared/Galleries.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/app.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/configurator.agave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/configurator.agave.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/data.binder.agave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/data.binder.agave.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/data.convertor.agave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/data.convertor.agave.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/layouter.trends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/layouter.trends.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/plotter.trends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/plotter.trends.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/predefinedSKUs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/predefinedSKUs.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/chart.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/config.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/controller.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/data.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/decoration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/decoration.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/layout.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/skus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/skus.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/tool.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/utils.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/logic/shared/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/logic/shared/validate.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/opensource/d3/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/opensource/d3/d3.v3.min.js -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/scripts/strings/stringadapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/scripts/strings/stringadapter.ts -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/blackblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/blackblue.css -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/blackblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/blackblue.png -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/blackwhite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/blackwhite.css -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/blackwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/blackwhite.png -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/check-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/check-black.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/check-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/check-white.svg -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/default-greenwhite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/default-greenwhite.css -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/default-greenwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/default-greenwhite.png -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/themes.json -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/whiteblack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/whiteblack.css -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/whiteblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/whiteblack.png -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/whiterose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/whiterose.css -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/whiterose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/whiterose.png -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/yellowblack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/yellowblack.css -------------------------------------------------------------------------------- /ModernTrend/ModernTrendWeb/themes/yellowblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/ModernTrendWeb/themes/yellowblack.png -------------------------------------------------------------------------------- /ModernTrend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/README.md -------------------------------------------------------------------------------- /ModernTrend/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/ModernTrend/license.txt -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraph.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraph.sln -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraph/PeopleGraph.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraph/PeopleGraph.csproj -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraph/PeopleGraphManifest/PeopleGraph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraph/PeopleGraphManifest/PeopleGraph.xml -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraph/PeopleGraphManifest/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraph/PeopleGraphManifest/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/PeopleGraphWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/PeopleGraphWeb.csproj -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/SKUs/peoplebar-callout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/SKUs/peoplebar-callout.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/SKUs/peoplebar-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/SKUs/peoplebar-classic.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/SKUs/peoplebar-giant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/SKUs/peoplebar-giant.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/Web.Debug.config -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/Web.Release.config -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/Web.config -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/content/en-us/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/content/en-us/Office.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/content/en-us/PeopleGraph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/content/en-us/PeopleGraph.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/AppIcon.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Back.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Back_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Back_hover.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Back_press.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Back_press.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Close.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Close_hover.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Data.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Data_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Data_hover.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Data_press.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Data_press.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Setting.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Setting_hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Setting_hover.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/images/Setting_press.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/images/Setting_press.svg -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/layouts/layouts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/layouts/layouts.json -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/pages/PeopleGraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/pages/PeopleGraph.html -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/resources/en-us/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/resources/en-us/resources.js -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/UX/BaseNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/UX/BaseNotification.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/UX/BindingPaneSpecific.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/UX/BindingPaneSpecific.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/UX/DataPane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/UX/DataPane.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/UX/Home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/UX/Home.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/UX/Notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/UX/Notification.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/UX/SettingPane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/UX/SettingPane.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/UX/shared/BindingPane.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/UX/shared/BindingPane.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/UX/shared/Galleries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/UX/shared/Galleries.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/app.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/configurator.agave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/configurator.agave.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/data.binder.agave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/data.binder.agave.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/data.convertor.peoplebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/data.convertor.peoplebar.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/layouter.base.d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/layouter.base.d3.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/layouter.callout.d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/layouter.callout.d3.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/layouter.classic.d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/layouter.classic.d3.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/layouter.giant.d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/layouter.giant.d3.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/plotter.peoplebarbase.d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/plotter.peoplebarbase.d3.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/plotter.peoplebarcallout.d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/plotter.peoplebarcallout.d3.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/plotter.peoplebarclassic.d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/plotter.peoplebarclassic.d3.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/plotter.peoplebargiant.d3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/plotter.peoplebargiant.d3.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/predefinedSKUs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/predefinedSKUs.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/chart.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/config.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/controller.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/cookie.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/data.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/decoration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/decoration.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/layout.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/skus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/skus.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/tool.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/utils.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/logic/shared/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/logic/shared/validate.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/opensource/d3/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/opensource/d3/d3.v3.min.js -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/scripts/strings/stringadapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/scripts/strings/stringadapter.ts -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/box.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/chi-pao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/chi-pao.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/clock.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/cloth.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/dance-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/dance-people.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/diamond.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/dolphin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/dolphin.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/dress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/dress.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/heart.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/laptop.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/moneybag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/moneybag.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/muscle-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/muscle-people.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/shapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/shapes.json -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/smile-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/smile-people.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/stand-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/stand-people.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/star.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/shapes/watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/shapes/watch.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-blackgrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-blackgrey.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-blackgrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-blackgrey.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-blackgreyred.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-blackgreyred.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-blackgreyred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-blackgreyred.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-blackyellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-blackyellow.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-blackyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-blackyellow.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-blueblack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-blueblack.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-blueblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-blueblack.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-greengrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-greengrey.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-greengrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-greengrey.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-roseblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-roseblue.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-roseblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-roseblue.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-whitered.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-whitered.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/callout-whitered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/callout-whitered.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-blackyellow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-blackyellow.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-blackyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-blackyellow.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-bluegrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-bluegrey.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-bluegrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-bluegrey.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-bluewhite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-bluewhite.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-bluewhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-bluewhite.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-greengrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-greengrey.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-greengrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-greengrey.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-redwhite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-redwhite.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-redwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-redwhite.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-rosewhite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-rosewhite.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-rosewhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-rosewhite.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-whitered.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-whitered.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/classic-whitered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/classic-whitered.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-greengrey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-greengrey.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-greengrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-greengrey.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-redwhite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-redwhite.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-redwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-redwhite.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-redwhiteblack.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-redwhiteblack.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-redwhiteblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-redwhiteblack.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-roseblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-roseblue.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-roseblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-roseblue.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-rosewhite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-rosewhite.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-rosewhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-rosewhite.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-whiterose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-whiterose.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-whiterose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-whiterose.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-yellowblue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-yellowblue.css -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/giant-yellowblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/giant-yellowblue.png -------------------------------------------------------------------------------- /PeopleGraph/PeopleGraphWeb/themes/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/PeopleGraphWeb/themes/themes.json -------------------------------------------------------------------------------- /PeopleGraph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/README.md -------------------------------------------------------------------------------- /PeopleGraph/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/PeopleGraph/license.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/README.md -------------------------------------------------------------------------------- /Wikipedia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/README.md -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/My Project/Application.myapp -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/My Project/MyExtensions/MyWebExtension.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/My Project/MyExtensions/MyWebExtension.vb -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/My Project/Resources.resx -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/My Project/Settings.settings -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/SandboxWeb.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/SandboxWeb.vbproj -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/Scripts/en-us/sandbox_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/Scripts/en-us/sandbox_strings.js -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/Scripts/sandbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/Scripts/sandbox.js -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/Web.Debug.config -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/Web.Release.config -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/Web.config -------------------------------------------------------------------------------- /Wikipedia/SandboxWeb/sandbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/SandboxWeb/sandbox.html -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_dev.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_dev.sln -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_dev/Wikipedia_dev.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_dev/Wikipedia_dev.vbproj -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_dev/Wikipedia_dev.xml/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_dev/Wikipedia_dev.xml/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_dev/Wikipedia_dev.xml/Wikipedia_dev.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_dev/Wikipedia_dev.xml/Wikipedia_dev.xml -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/BackButtonHover_24x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/BackButtonHover_24x.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/BackButton_24x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/BackButton_24x.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/CheckmarkChecked_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/CheckmarkChecked_16x.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/CheckmarkNotCheckedd_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/CheckmarkNotCheckedd_16x.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/ClosePaneGlyphServerwhite_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/ClosePaneGlyphServerwhite_16x.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/InsetToDoc_24x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/InsetToDoc_24x.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/InsetToDoc_image_24x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/InsetToDoc_image_24x.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/OptionsWordFmtSpaces_16x16x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/OptionsWordFmtSpaces_16x16x32.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/SearchMagnifyingGlass_20x20x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/SearchMagnifyingGlass_20x20x32.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/collapsetable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/collapsetable.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/expandtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/expandtable.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/loading.gif -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/logo.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/options.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Images/wikilogo_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Images/wikilogo_32x32.png -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_navigation.js -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_tabs.js -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_ui.js -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_utils.js -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Scripts/Wikipedia_vars.js -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Scripts/en-us/Strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Scripts/en-us/Strings.js -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Styles/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Styles/App.css -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Styles/OxgAgaveStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Styles/OxgAgaveStyle.css -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Styles/OxgNavigationStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Styles/OxgNavigationStyle.css -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Web.Debug.config -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Web.Release.config -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Web.config -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Wikipedia_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Wikipedia_dev.html -------------------------------------------------------------------------------- /Wikipedia/Wikipedia_devWeb/Wikipedia_devWeb.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/Wikipedia_devWeb/Wikipedia_devWeb.vbproj -------------------------------------------------------------------------------- /Wikipedia/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Apps/HEAD/Wikipedia/license.txt --------------------------------------------------------------------------------