comparison src/djol/declare-style.js @ 23:1d72fddc319a

make eslint happy
author cin
date Wed, 06 Dec 2017 14:19:45 +0300
parents f0035923ff3e
children
comparison
equal deleted inserted replaced
22:60f6493e2892 23:1d72fddc319a
1 define(["dojo/_base/declare","implab/safe"],function(declare, safe){ 1 define(["dojo/_base/declare","implab/safe"],function(declare, safe){
2 return function(base, proto){ 2 return function(base, proto){
3 var cls = declare(base,proto); 3 var cls = declare(base,proto);
4 4
5 var factory = function() { 5 var factory = /** @this */ function() {
6 var me = this; 6 var me = this;
7 cls.apply(me,arguments); 7 cls.apply(me,arguments);
8 var fn = function() { 8 var fn = function() {
9 return me.getFeatureStyle.apply(me,arguments); 9 return me.getFeatureStyle.apply(me,arguments);
10 }; 10 };