You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Puppy Love (ng-conf 2016)](https://github.com/kara/puppy-love) - see live demo [here](https://youtu.be/rRiV_b3WsoY?t=4m20s)
123
+
-[Puppy Love Mobile (Google IO 2016)](https://github.com/kara/puppy-love-io)
135
124
136
-
bootstrap(MyAppComponent, [
137
-
disableDeprecatedForms(),
138
-
provideForms()
139
-
]);
140
-
```
141
125
142
-
- Import any and all forms symbols - `NgForm`, `Validators`, etc - from `@angular/forms`.
143
-
Importing them from `@angular/common` will result in a `No value accessor found` error.
126
+
### Additional setup for `md-slide-toggle` and `md-slider`:
127
+
The slide-toggle and slider components have a dependency on [HammerJS](http://hammerjs.github.io/).
128
+
1) Add HammerJS to your application via [npm](https://www.npmjs.com/package/hammerjs), a CDN
129
+
(such as the [Google CDN](https://developers.google.com/speed/libraries/#hammerjs)),
130
+
or served directly from your app.
131
+
2) Include the typings for HammerJS in your typescript build ([more info on @types](https://blogs.msdn.microsoft.com/typescript/2016/06/15/the-future-of-declaration-files))
144
132
145
-
- Update your form code to use the new APIs. See more information about the changes in the proposal
0 commit comments