diff options
author | wout <wout@impinc.co.uk> | 2014-08-19 18:14:37 +0200 |
---|---|---|
committer | wout <wout@impinc.co.uk> | 2014-08-19 18:14:37 +0200 |
commit | 4466328be6a0c1cd5f3a14abab508b7f3c692061 (patch) | |
tree | a767e724b721d357c01daf53f96e7b075d5859e3 | |
parent | f9f5081f0a8f05f0c42502cc955a035d187f6b5c (diff) | |
download | svg.js-4466328be6a0c1cd5f3a14abab508b7f3c692061.tar.gz svg.js-4466328be6a0c1cd5f3a14abab508b7f3c692061.zip |
Typo's
-rwxr-xr-x | dist/svg.js | 6 | ||||
-rw-r--r-- | gulpfile.js | 2 | ||||
-rwxr-xr-x | src/svg.js | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/dist/svg.js b/dist/svg.js index 2eed71f..b8cc083 100755 --- a/dist/svg.js +++ b/dist/svg.js @@ -6,7 +6,7 @@ * @copyright Wout Fierens <wout@impinc.co.uk> * @license MIT * -* BUILT: Sun Aug 03 2014 15:28:28 GMT+0200 (W. Europe Daylight Time) +* BUILT: Sun Aug 03 2014 16:27:52 GMT+0200 (CEST) */ (function(root, factory) { @@ -55,10 +55,10 @@ SVG.eid = function(name) { // Method for element creation SVG.create = function(name) { - // Create element + // create element var element = document.createElementNS(this.ns, name) - // Apply unique id + // apply unique id element.setAttribute('id', this.eid(name)) return element diff --git a/gulpfile.js b/gulpfile.js index e574663..a62d99c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -102,7 +102,7 @@ gulp.task('unify', ['clean'], function() { .pipe(header(headerLong, { pkg: pkg }))
.pipe(gulp.dest('dist'))
.pipe(size({ showFiles: true, title: 'Full' }))
-});
+})
/**
* uglify the file and show the size of the result
@@ -34,10 +34,10 @@ SVG.eid = function(name) { // Method for element creation SVG.create = function(name) { - // Create element + // create element var element = document.createElementNS(this.ns, name) - // Apply unique id + // apply unique id element.setAttribute('id', this.eid(name)) return element |