angular/modules/angular2/src/directives
Victor Berchet d7df853bde feat(Directive): convert properties to an array
fixes #2013

BREAKING CHANGE:

Before

    @Directive(properties: {
      'sameName': 'sameName',
      'directiveProp': 'elProp | pipe'
    })

After

    @Directive(properties: [
      'sameName',
      'directiveProp: elProp | pipe'
    ])
2015-05-29 11:44:43 +02:00
..
class.ts feat(Directive): convert properties to an array 2015-05-29 11:44:43 +02:00
ng_for.ts feat(Directive): convert properties to an array 2015-05-29 11:44:43 +02:00
ng_if.ts feat(Directive): convert properties to an array 2015-05-29 11:44:43 +02:00
ng_non_bindable.ts refactor(ts'ify): ts’ify mocks, directives and test_lib 2015-05-21 15:33:37 -07:00
ng_switch.ts feat(Directive): convert properties to an array 2015-05-29 11:44:43 +02:00