Validating form fields on the client

Change-Id: I33a0c2417d73d7974e4dc0c2f9f77f3984508606
diff --git a/src/app/core/alert/alert.ts b/src/app/core/alert/alert.ts
index 6c64015..037abb1 100644
--- a/src/app/core/alert/alert.ts
+++ b/src/app/core/alert/alert.ts
@@ -8,7 +8,7 @@
 
   static $inject = ['$timeout'];
 
-  public config: any;
+  public config: IXosAlertConfig;
   public show: boolean;
   public dismiss: () => void;
 
@@ -30,7 +30,6 @@
       this.show = false;
     };
 
-    console.log(this.config);
     if (this.config.autoHide) {
 
       let to = this.$timeout(() => {