Matjaž Lipuš
Matjaž Lipuš
For easier maintenance and encapsulate add custom methods. ``` typescript type CustomMethods { validate() { return this.magic(this.value); } magic(question) { return question == this.answer(); } answer() { return 42; }...
I know I can upgrade. But I recommend at least updating minor version. Because now for example browserify requires 0.8 too. ``` "http-browserify" : "~0.1.1", ``` https://github.com/substack/http-browserify/commit/c5ffd1d02048b8d723d2809537f29de4104eb2fd#L2R13
ReferenceError: ren is not defined at Router. (.../zappa/lib/zappa.js:406:9) it should be res
Following basic default instructions fails https://github.com/ryutamaki/vue-template-webpack-typescript#usage ``` $ npm run unit WebpackOptionsValidationError: Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema....
### Describe the changes you have made in this PR _Sats buttons 4 linear values from min to max, with nice rounding & formating. min & max values are unchanged._...
This code is really nice and simple 'hack' how to use lazy loading. For larger app you should definitely look into http://marcoslin.github.io/angularAMD
instead of writing ``` var module = { car: ['type', Car], power: ['value', 1184] } ``` you simply write ``` var module = { car: di.type(Car), power: 1184 } ```