Skip to content

Commit

Permalink
fixed license
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Nightingale committed Oct 24, 2012
1 parent 7153d95 commit 46b4029
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 48 deletions.
26 changes: 3 additions & 23 deletions dist/Leaflet.widget.js
@@ -1,26 +1,6 @@
/*! Leaflet.widget - v0.1.0 - 2012-10-23
* Copyright (c) 2012 function () {
// If the string looks like an identifier, then we can return it as is.
// If the string contains no control characters, no quote characters, and no
// backslash characters, then we can simply slap some quotes around it.
// Otherwise we must also replace the offending characters with safe
// sequences.
if (ix.test(this)) {
return this;
}
if (nx.test(this)) {
return '"' + this.replace(nxg, function (a) {
var c = escapes[a];
if (c) {
return c;
}
return '\\u' + ('0000' + a.charCodeAt().toString(16)).slice(-4);
}) + '"';
}
return '"' + this + '"';
}; */
/*! Leaflet.widget - v0.1.0 - 2012-10-24
* Copyright (c) 2012 Affinity Bridge - Tom Nightingale <tom@affinitybridge.com> (http://affinitybridge.com)
* Licensed BSD */

L.GeoJSONUtil = {
featureCollection: function (features) {
Expand Down
26 changes: 3 additions & 23 deletions dist/Leaflet.widget.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions grunt.js
Expand Up @@ -10,8 +10,8 @@ module.exports = function(grunt) {
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %>\n' +
'<%= pkg.homepage ? "* " + pkg.homepage + "\n" : "" %>' +
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>; */' //' +
// ' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
'* Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
},
lint: {
files: ['grunt.js', 'src/**/*.js', 'test/**/*.js']
Expand Down

0 comments on commit 46b4029

Please sign in to comment.