AngularJS: Migration process Bitacora First Step 1.2 -> 1.3 I was considering migrate from AJS 1.2.4 to 1.4.0, reason 1.4 is because I found it the most popular and stable this days, but it could potentially be 1.4.5 or evenRead more…
3-way-data-binding using AngularJS, Yeoman, FirebasedB using AngularFire
We are going to set-up step-by-step and out of the box Bootstrap and some AngularJS recommended modules, AngularFire and Firebase Simple Login and quickly view how to use 3-way-data-binding: YeomanJS Yeoman helps us to kickstart new projects, prescribing bestRead more…
MVVM, MVC and MV* design pattern
What MVC is about? MVC is about discipline. MVC is about separation of concerns. MVC is about modularisation. MVC is about write tidy code. MVC is about test. We want the “discipline” of the “separation of concerns” from the MVC pattern. This facilitates modularisationRead more…
jQuery plugin compendium
http://www.unheap.com http://plugins.jquery.com http://www.jsdb.io http://microjs.com http://www.jqueryrain.com Do I missing something? Yes, for sure!. Please send me your links to: developer@leolanese.com
KnockoutJS cheat-sheet
Controlling text and appearance bindings # Binding Description 1 visible The visible binding allows you to show or hide an element based on a value passed to it.
1 |
<div data-bind="visible: hasError">An error has occurred</div> |
2 Text The text binding populates the content of the elementRead more…