Mercurial > pub > ImplabJs
comparison src/djol/declare-style.js @ 34:27e8e9e38e07 default tip
Слияние
| author | nickolay |
|---|---|
| date | Wed, 05 Jun 2019 20:44:15 +0300 |
| parents | 8af8e840dd49 1dc2fd263b90 |
| children |
comparison
equal
deleted
inserted
replaced
| 33:8af8e840dd49 | 34:27e8e9e38e07 |
|---|---|
| 1 define(["dojo/_base/declare","implab/safe"],function(declare, safe){ | |
| 2 return function(base, proto){ | |
| 3 var cls = declare(base,proto); | |
| 4 | |
| 5 var factory = /** @this */ function() { | |
| 6 var me = this; | |
| 7 cls.apply(me,arguments); | |
| 8 var fn = function() { | |
| 9 return me.getFeatureStyle.apply(me,arguments); | |
| 10 }; | |
| 11 fn.style = me; | |
| 12 fn.styleFunction = fn; | |
| 13 return fn; | |
| 14 }; | |
| 15 | |
| 16 factory.styleClass = cls; | |
| 17 factory.prototype = cls.prototype; | |
| 18 return factory; | |
| 19 }; | |
| 20 }); |
