Connecting to Device
19 |Connecting to Device
19 |Hello, your application is ready!
18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /templates/fixed-whitelist/blank/www/scripts/index.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | "use strict"; 3 | 4 | document.addEventListener( 'deviceready', onDeviceReady.bind( this ), false ); 5 | 6 | function onDeviceReady() { 7 | // Handle the Cordova pause and resume events 8 | document.addEventListener( 'pause', onPause.bind( this ), false ); 9 | document.addEventListener( 'resume', onResume.bind( this ), false ); 10 | 11 | // TODO: Cordova has been loaded. Perform any initialization that requires Cordova here. 12 | }; 13 | 14 | function onPause() { 15 | // TODO: This application has been suspended. Save application state here. 16 | }; 17 | 18 | function onResume() { 19 | // TODO: This application has been reactivated. Restore application state here. 20 | }; 21 | } )(); -------------------------------------------------------------------------------- /templates/fixed-whitelist/blank/www/scripts/platformOverrides.js: -------------------------------------------------------------------------------- 1 | // Platform specific overrides will be placed in the merges folder versions of this file -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require("gulp"); 2 | var ts = require("gulp-typescript"); 3 | 4 | var proj = ts.createProject("scripts/tsconfig.json"); 5 | 6 | gulp.task("default", ["typescript"]); 7 | 8 | gulp.task("typescript", function (callback) { 9 | var result = gulp.src("scripts/**/*.ts").pipe(ts(proj)); 10 | 11 | return result.js.pipe(gulp.dest("www/scripts")); 12 | }); 13 | -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/merges/android/scripts/platformOverrides.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | // Append the bind() polyfill 3 | var scriptElem = document.createElement('script'); 4 | scriptElem.setAttribute('src', 'scripts/android2.3-jscompat.js'); 5 | if (document.body) { 6 | document.body.appendChild(scriptElem); 7 | } else { 8 | document.head.appendChild(scriptElem); 9 | } 10 | }()); -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/merges/windows/scripts/platformOverrides.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | // Append the safeHTML polyfill 3 | var scriptElem = document.createElement('script'); 4 | scriptElem.setAttribute('src', 'scripts/winstore-jscompat.js'); 5 | if (document.body) { 6 | document.body.appendChild(scriptElem); 7 | } else { 8 | document.head.appendChild(scriptElem); 9 | } 10 | }()); -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "devDependencies": { 3 | "gulp": "latest", 4 | "gulp-typescript": "latest" 5 | } 6 | } -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/android/icon-36-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/android/icon-36-ldpi.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/android/icon-48-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/android/icon-48-mdpi.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/android/icon-72-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/android/icon-72-hdpi.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/android/icon-96-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/android/icon-96-xhdpi.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-40-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-40-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-40.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-50-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-50-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-50.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-57-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-57.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-60-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-60-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-60-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-60-3x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-60.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-72-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-72.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-76-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-76-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-76.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-small-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-small-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/ios/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/ios/icon-small.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Square150x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Square150x150Logo.scale-240.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Square30x30Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Square30x30Logo.scale-100.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Square310x310Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Square310x310Logo.scale-100.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Square44x44Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Square44x44Logo.scale-240.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Square70x70Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Square70x70Logo.scale-100.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Square71x71Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Square71x71Logo.scale-240.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/StoreLogo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/StoreLogo.scale-240.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/windows/Wide310x150Logo.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/windows/Wide310x150Logo.scale-240.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/wp8/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/wp8/ApplicationIcon.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/icons/wp8/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/icons/wp8/Background.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/native/android/ant.properties: -------------------------------------------------------------------------------- 1 | key.store= 2 | key.alias= 3 | key.store.password= 4 | key.alias.password= -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/android/screen-hdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/android/screen-hdpi-landscape.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/android/screen-hdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/android/screen-hdpi-portrait.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/android/screen-ldpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/android/screen-ldpi-landscape.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/android/screen-ldpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/android/screen-ldpi-portrait.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/android/screen-mdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/android/screen-mdpi-landscape.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/android/screen-mdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/android/screen-mdpi-portrait.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/android/screen-xhdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/android/screen-xhdpi-landscape.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/android/screen-xhdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/android/screen-xhdpi-portrait.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-ipad-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-ipad-landscape-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-ipad-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-ipad-landscape.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-ipad-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-ipad-portrait-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-ipad-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-ipad-portrait.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-568h-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-568h-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-landscape-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-landscape-736h.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-portrait-2x.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-portrait-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-portrait-667h.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-portrait-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-portrait-736h.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/ios/screen-iphone-portrait.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/windows/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/windows/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/windows/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/windows/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/windows/SplashScreenPhone.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/windows/SplashScreenPhone.scale-240.png -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/res/screens/wp8/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/taco-cli/b1d42c280e699e5860a9cf2e828d7c2c8f078e7f/templates/fixed-whitelist/typescript/res/screens/wp8/SplashScreenImage.jpg -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/scripts/index.ts: -------------------------------------------------------------------------------- 1 | module MyApp { 2 | "use strict"; 3 | 4 | export module Application { 5 | export function initialize() { 6 | document.addEventListener('deviceready', onDeviceReady, false); 7 | } 8 | 9 | function onDeviceReady() { 10 | // Handle the Cordova pause and resume events 11 | document.addEventListener('pause', onPause, false); 12 | document.addEventListener('resume', onResume, false); 13 | 14 | // TODO: Cordova has been loaded. Perform any initialization that requires Cordova here. 15 | } 16 | 17 | function onPause() { 18 | // TODO: This application has been suspended. Save application state here. 19 | } 20 | 21 | function onResume() { 22 | // TODO: This application has been reactivated. Restore application state here. 23 | } 24 | 25 | } 26 | 27 | window.onload = function () { 28 | Application.initialize(); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/scripts/platformOverrides.ts: -------------------------------------------------------------------------------- 1 | // Platform specific overrides will be placed in the merges folder versions of this file -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/scripts/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions" : { 3 | "module" : "commonjs" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/scripts/typings/cordova/plugins/Device.d.ts: -------------------------------------------------------------------------------- 1 | // Type definitions for Apache Cordova Device plugin. 2 | // Project: https://github.com/apache/cordova-plugin-device 3 | // Definitions by: Microsoft Open Technologies, Inc.Hello, your application is ready!
18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /templates/fixed-whitelist/typescript/www/scripts/.taco-ignore: -------------------------------------------------------------------------------- 1 | This is a dummy file with the sole purpose of allowing to commit its parent directory (which would otherwise be empty) to git source control. 2 | 3 | It is not intended to be part of the template and will be excluded from the archive process (when doing "gulp prepare-templates"). -------------------------------------------------------------------------------- /tools/build_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "src": "src", 3 | "templates": "templates", 4 | "tools": "tools", 5 | "build": "build", 6 | "buildCoverage": "build/coverage", 7 | "buildPackages": "build/packages/node_modules", 8 | "buildTools": "build/tools", 9 | "buildTemplates": "build/packages/node_modules/taco-kits/templates", 10 | "tsCompileOptions": { "noImplicitAny": true, "noEmitOnError": true, "target": "ES5", "module": "commonjs", "sourceMap": true, "sortOutput": true } 11 | } 12 | --------------------------------------------------------------------------------