diff --git a/Ombi/Ombi.sln b/Ombi/Ombi.sln index e46d08528..f387bc6a5 100644 --- a/Ombi/Ombi.sln +++ b/Ombi/Ombi.sln @@ -1,12 +1,13 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.26228.10 +VisualStudioVersion = 15.0.26228.9 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Ombi", "Ombi\Ombi.csproj", "{C987AA67-AFE1-468F-ACD3-EAD5A48E1F6A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9D30CCF8-A115-4EB7-A34D-07780D752789}" ProjectSection(SolutionItems) = preProject + ..\appveyor.yml = ..\appveyor.yml Build\publish windows.bat = Build\publish windows.bat Build\publish.bat = Build\publish.bat EndProjectSection diff --git a/Ombi/Ombi/app/app.module.ts b/Ombi/Ombi/app/app.module.ts index 6a373e12f..830f47cd8 100644 --- a/Ombi/Ombi/app/app.module.ts +++ b/Ombi/Ombi/app/app.module.ts @@ -1,6 +1,8 @@ import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; +import { FormsModule } from '@angular/forms'; + import { AppComponent } from './app.component'; import { RouterModule, Routes } from '@angular/router'; @@ -27,7 +29,8 @@ const routes: Routes = [ HttpModule, MenubarModule, GrowlModule, - ButtonModule + ButtonModule, + FormsModule ], declarations: [ AppComponent, diff --git a/Ombi/Ombi/app/search/search.component.html b/Ombi/Ombi/app/search/search.component.html index 72ed391d3..669fbe938 100644 --- a/Ombi/Ombi/app/search/search.component.html +++ b/Ombi/Ombi/app/search/search.component.html @@ -1,5 +1,5 @@ 

Search

-

Search Para

+

Search Paragraph


@@ -20,9 +20,99 @@ TV Shows - + - \ No newline at end of file + + + +
+ + +
+ +
+
+ +
+
+
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+ +
+
+
+ + +
+ +
+
+ +
+
+
+ + + +
+
+
+ --> + diff --git a/Ombi/Ombi/app/search/search.component.ts b/Ombi/Ombi/app/search/search.component.ts index d92fb760b..3211a90ca 100644 --- a/Ombi/Ombi/app/search/search.component.ts +++ b/Ombi/Ombi/app/search/search.component.ts @@ -1,10 +1,14 @@ -import { Component } from '@angular/core'; +import { Component, OnInit } from '@angular/core'; @Component({ selector: 'ombi', moduleId: module.id, templateUrl: './search.component.html' }) -export class SearchComponent { - +export class SearchComponent implements OnInit{ + ngOnInit(): void { + this.searchText = "sadaa"; + } + + searchText : string; } \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml index c79d9f9b2..8f9a3f09a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,6 +13,7 @@ before_build: - appveyor-retry dotnet restore - appveyor-retry npm install bower -g - appveyor-retry npm install -g gulp +- appveyor-retry npm install -g typescript - appveyor-retry npm install - appveyor-retry bower install - gulp publish