Skip to content

Commit

Permalink
v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Sep 25, 2015
1 parent fb2b93b commit eaedcbc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 23 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polymer",
"version": "1.1.3",
"version": "1.1.4",
"main": [
"polymer.html"
],
Expand Down
11 changes: 5 additions & 6 deletions build.log
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
BUILD LOG
---------
Build Time: 2015-09-04T17:25:40-0700
Build Time: 2015-09-25T15:52:57-0700

NODEJS INFORMATION
==================
nodejs: v0.12.7
nodejs: v4.1.1
del: 1.2.0
gulp: 3.9.0
gulp-audit: 1.0.0
Expand All @@ -14,14 +14,13 @@ gulp-vulcanize: 6.0.1
lazypipe: 0.2.4
polyclean: 1.2.0
run-sequence: 1.1.1
web-component-tester: 3.3.21

REPO REVISIONS
==============
polymer: 7fafc6a159b8e5f0e51a87525c4804a3031f7e2d
polymer: fe467cd62d8a2dc585606da282cd477b03e46468

BUILD HASHES
============
polymer-mini.html: 72c032eacc45c63431054c111d0ce86357eb07f3
polymer-micro.html: c6304eaf6a0a0dfa3e25b2012560a9097300ec74
polymer.html: 7048c98a0dd38aa6cc4d635512e7e48582807ee8
polymer-micro.html: f598c7c5fb99ded0fa8d680a417c2610b2aa6409
polymer.html: 8e4c3244201c0b0557f14cba56a625b4cd99c208
2 changes: 1 addition & 1 deletion polymer-micro.html
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@
}
}
});
Polymer.version = '1.1.3';
Polymer.version = '1.1.4';
Polymer.Base._addFeature({
_registerFeatures: function () {
this._prepIs();
Expand Down
21 changes: 6 additions & 15 deletions polymer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1817,6 +1817,7 @@
for (var i = 0, l = h$.length, h; i < l && (h = h$[i]); i++) {
h[0].call(this, h[1], h[2]);
}
this._handlers = [];
}
});
(function () {
Expand Down Expand Up @@ -1940,7 +1941,7 @@
if (from) {
this._boundPaths[to] = from;
} else {
this.unbindPath(to);
this.unlinkPaths(to);
}
},
unlinkPaths: function (path) {
Expand All @@ -1949,23 +1950,13 @@
}
},
_notifyBoundPaths: function (path, value) {
var from, to;
for (var a in this._boundPaths) {
var b = this._boundPaths[a];
if (path.indexOf(a + '.') == 0) {
from = a;
to = b;
break;
}
if (path.indexOf(b + '.') == 0) {
from = b;
to = a;
break;
}
this.notifyPath(this._fixPath(b, a, path), value);
} else if (path.indexOf(b + '.') == 0) {
this.notifyPath(this._fixPath(a, b, path), value);
}
if (from && to) {
var p = this._fixPath(to, from, path);
this.notifyPath(p, value);
}
},
_fixPath: function (property, root, path) {
Expand Down Expand Up @@ -2193,7 +2184,7 @@
OPEN_BRACE: '{',
CLOSE_BRACE: '}',
_rx: {
comments: /\/\*[^*]*\*+([^/*][^*]*\*+)*\//gim,
comments: /\/\*[^*]*\*+([^\/*][^*]*\*+)*\//gim,
port: /@import[^;]*;/gim,
customProp: /(?:^|[\s;])--[^;{]*?:[^{};]*?(?:[;\n]|$)/gim,
mixinProp: /(?:^|[\s;])--[^;{]*?:[^{;]*?{[^}]*?}(?:[;\n]|$)?/gim,
Expand Down

0 comments on commit eaedcbc

Please sign in to comment.