Skip to content

Commit

Permalink
[Version - v0.3.8]
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaygopinath committed Apr 24, 2016
1 parent 6f31980 commit 4f335bb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#Changelog

## [v0.3.8](https://github.com/vinaygopinath/ngMeta/releases/tag/v0.3.8)

##### Features

* [#10](https://github.com/vinaygopinath/ngMeta/issues/10) `disableUpdate` option to disable $stateChangeSuccess updates for particular states (to be used in conjuction with state resolve functions)

## [v0.3.7](https://github.com/vinaygopinath/ngMeta/releases/tag/v0.3.7)

##### Features
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": "ngMeta",
"version": "0.3.7",
"version": "0.3.8",
"authors": [
"Vinay Gopinath <[email protected]>"
],
Expand Down
4 changes: 4 additions & 0 deletions dist/ngMeta.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@
var readRouteMeta = function(meta) {
meta = meta || {};

if (meta.disableUpdate) {
return false;
}

setTitle(meta.title, meta.titleSuffix);

var def = angular.copy(defaults);
Expand Down
4 changes: 2 additions & 2 deletions dist/ngMeta.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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-meta",
"version": "0.3.7",
"version": "0.3.8",
"description": "Meta tags support for AngularJS single page applications (SPA)",
"main": "src/ngMeta.js",
"directories": {
Expand Down Expand Up @@ -47,4 +47,4 @@
"karma-phantomjs2-launcher": "^0.5.0",
"phantomjs": "^1.9.18"
}
}
}

0 comments on commit 4f335bb

Please sign in to comment.