Skip to content

Commit

Permalink
bumped version. fixed dist
Browse files Browse the repository at this point in the history
  • Loading branch information
itburnz committed Jul 9, 2014
1 parent 6b98061 commit 4aed027
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ module.exports = function (grunt) {
'module.exports = factory(require("tether"));' +
'} else {' +
'root.test = factory(root.Tether)};' +
'}(this, function(Tether) {',
'}(this, function(Tether) {' +
' ',
footer: '}));'
},
dist: {
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-tether",
"version": "0.1.3",
"version": "0.1.4",
"main": "./dist/angular-tether.js",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-tether.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! angular-tether - v0.1.3 - 2014-07-07 */(function (root, factory) {if (typeof define === "function" && define.amd) {define(["tether"], factory);} else if (typeof exports === "object") {module.exports = factory(require("tether"));} else {root.test = factory(root.Tether)};}(this, function(Tether) {angular.module('ngTetherPopover', ['ngTether']).directive('tetherPopover', [
/*! angular-tether - v0.1.4 - 2014-07-09 */(function (root, factory) {if (typeof define === "function" && define.amd) {define(["tether"], factory);} else if (typeof exports === "object") {module.exports = factory(require("tether"));} else {root.test = factory(root.Tether)};}(this, function(Tether) { angular.module('ngTetherPopover', ['ngTether']).directive('tetherPopover', [
'Tether',
'$parse',
'Utils',
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-tether.min.js

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

1 change: 0 additions & 1 deletion src/angular-tether.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ angular.module('ngTether', [])
}
}


// bool. is tethered instance got destroyed
function isActive() {
return tether && tether.enabled;
Expand Down

0 comments on commit 4aed027

Please sign in to comment.