angular-simple-logger icon indicating copy to clipboard operation
angular-simple-logger copied to clipboard

decorator bug angular-simple-logger.min.js (min only)

Open nmccready opened this issue 10 years ago • 0 comments

Error when using decorator

  }(), this.decorator = ["$log", function(e) {
                var o;
                return o = new n(e), o.currentLevel = r.debug, o

will only work when

  }(), this.decorator = ["$log", function($delegate) {
                var o;
                return o = new n($delegate), o.currentLevel = r.debug, o

Wonder if we can skip this section for minify.

nmccready avatar Oct 30 '15 02:10 nmccready