- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
app.service('CarService', function () {
this.dealer = "Bad";
this.numCylinder = 4;
});
app.factory('CarFactory', function () {
return function (numCylinder) {
this.dealer = "Bad";
this.numCylinder = numCylinder
};
});
app.provider('CarProvider', function () {
this.dealerName = 'Bad';
this.$get = function () {
return function (numCylinder) {
this.numCylinder = numCylinder;
this.dealer = this.dealerName;
}
};
this.setDealerName = function (str) {
this.dealerName = str;
}
});
Lennis 15.08.2014 20:54 # +2
gost 15.08.2014 21:02 # 0
1024-- 15.08.2014 21:11 # 0
Ну то есть интересно вышло, а оригинал не читал.
bormand 15.08.2014 21:12 # 0
P.S. А, тьфу, его в апреле и написали.
Fike 16.08.2014 03:32 # 0
блядь а
Fike 16.08.2014 03:32 # 0