diff --git a/ng-sample/app/app.ts b/ng-sample/app/app.ts
index a8f7bce0e..34faafe71 100644
--- a/ng-sample/app/app.ts
+++ b/ng-sample/app/app.ts
@@ -12,8 +12,10 @@ import { nativeScriptBootstrap } from "./nativescript-angular/application";
//import {Benchmark} from './performance/benchmark';
//import {ListTest} from './examples/list/list-test';
import {ListTestAsync} from "./examples/list/list-test-async";
+// import {ImageTest} from "./examples/image/image-test";
//nativeScriptBootstrap(RendererTest);
//nativeScriptBootstrap(Benchmark);
//nativeScriptBootstrap(ListTest);
nativeScriptBootstrap(ListTestAsync);
+// nativeScriptBootstrap(ImageTest);
diff --git a/ng-sample/app/examples/web-images/image-test.ts b/ng-sample/app/examples/web-images/image-test.ts
deleted file mode 100644
index 549a39a6c..000000000
--- a/ng-sample/app/examples/web-images/image-test.ts
+++ /dev/null
@@ -1,71 +0,0 @@
-import {Component, Input} from 'angular2/core';
-
-class DataItem {
- constructor(public id: number, public name: string) { }
-}
-
-@Component({
- selector: 'item-component',
- template: `
-
-
-
-
- `
-})
-export class ItemComponent {
- @Input() data: DataItem;
- @Input() odd: boolean;
- @Input() even: boolean;
- constructor() { }
-}
-
-@Component({
- selector: 'list-test',
- directives: [ItemComponent],
- template: `
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- `
- // TEMPLATE WITH COMPONENT
- //
- //
- //
-
- // IN-PLACE TEMPLATE
- //
- //
- //
- //
- //
- //
-})
-export class ListTest {
- public myItems: Array;
-
- constructor() {
- this.myItems = [];
- for (var i = 0; i < 30; i++) {
- this.myItems.push(new DataItem(i, "data item " + i));
- }
- }
-
- public onItemTap(args) {
- console.log("------------------------ ItemTapped: " + args.index);
- }
-}
-
diff --git a/ng-sample/app/main-page.ts b/ng-sample/app/main-page.ts
index eb1c5b8b3..511d2e9f1 100644
--- a/ng-sample/app/main-page.ts
+++ b/ng-sample/app/main-page.ts
@@ -20,7 +20,7 @@ export function createPage() {
profiling.start('ng-bootstrap');
console.log('BOOTSTRAPPING...');
//bootstrap(Benchmark, []).then((appRef) => {
- // bootstrap(RendererTest, []).then((appRef) => {
+ //bootstrap(RendererTest, []).then((appRef) => {
//bootstrap(ListTest, []).then((appRef) => {
//bootstrap(ListTestAsync, []).then((appRef) => {
bootstrap(ImageTest, []).then((appRef) => {