Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
package is a reserved word
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Jun 17, 2015
1 parent 845933a commit be8642d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/elements/package-tile/package-tile.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ <h3 class="title" extended$="[[_extendedTitle(package)]]">[[package.title]]</h3>
this.classList.add('active');
}.bind(this), (index + 1) * 50);
},
_extendedTitle: function(package) {
if (package.title.length > 20) return true;
_extendedTitle: function(p) {
if (p.title.length > 20) return true;
}
});
</script>
</script>
4 changes: 2 additions & 2 deletions app/elements/pages/page-browse.html
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ <h2 class="flex"><span>[[pageTitle]]</span> <span class="count">[[_elementCount]
this.async(function() { this.$.query.focus(); });
}
},
updateURL: function(q,package,tag,view) {
updateURL: function(q,p,tag,view) {
var qs = this._buildQueryString();
if (qs !== _lastNavigated && this.router) {
_lastNavigated = qs;
Expand Down Expand Up @@ -330,4 +330,4 @@ <h2 class="flex"><span>[[pageTitle]]</span> <span class="count">[[_elementCount]
}
});
})();
</script>
</script>

0 comments on commit be8642d

Please sign in to comment.