Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfiana Sibuea committed Mar 29, 2015
1 parent 7d98e36 commit 318b638
Show file tree
Hide file tree
Showing 12 changed files with 38 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Waves",
"version": "0.6.4",
"version": "0.6.5",
"homepage": "http://fian.my.id/Waves",
"authors": [
"Alfiana E. Sibuea <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion dist/waves.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Waves v0.6.4
* Waves v0.6.5
* http://fian.my.id/Waves
*
* Copyright 2014 Alfiana E. Sibuea and other contributors
Expand Down
31 changes: 26 additions & 5 deletions dist/waves.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
/*!
* Waves v0.6.4
* Waves v0.6.5
* http://fian.my.id/Waves
*
* Copyright 2014 Alfiana E. Sibuea and other contributors
* Released under the MIT license
* https://github.com/fians/Waves/blob/master/LICENSE
*/

;(function(window) {
'use strict';
;(function(window, factory) {
"use strict";

// AMD. Register as an anonymous module. Wrap in function so we have access
// to root via `this`.
if (typeof define === "function" && define.amd) {
define([], function() {
return factory.apply(window);
});
}

// Node. Does not work with strict CommonJS, but only CommonJS-like
// environments that support module.exports, like Node.
else if (typeof exports === "object") {
module.exports = factory.call(window);
}

// Browser globals.
else {
window.Waves = factory.call(window);
}
})(typeof global === "object" ? global : this, function () {
"use strict";

var Waves = Waves || {};
var $$ = document.querySelectorAll.bind(document);
Expand Down Expand Up @@ -324,5 +345,5 @@
element.addEventListener('mousedown', showEffect, false);
};

window.Waves = Waves;
})(window);
return Waves;
});
2 changes: 1 addition & 1 deletion dist/waves.min.css

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

4 changes: 2 additions & 2 deletions dist/waves.min.js

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

Loading

0 comments on commit 318b638

Please sign in to comment.