Skip to content

Commit

Permalink
Add missing semicolons. [#837 state:resolved]
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaffle authored and tobie committed Oct 21, 2009
1 parent f9c680a commit 2d3e423
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dom/dom.js
Expand Up @@ -1930,7 +1930,7 @@ Object.extend(Element, Element.Methods);

div = null;

})(document.createElement('div'))
})(document.createElement('div'));

/**
* Element.extend(element) -> Element
Expand Down
4 changes: 2 additions & 2 deletions src/dom/selector.js
Expand Up @@ -309,7 +309,7 @@ Object.extend(Selector, {
while (e && le != e && (/\S/).test(e)) {
le = e;
for (var i = 0; i<len; i++) {
name = p[i].name
name = p[i].name;
if (m = e.match(p[i].re)) {
v = Object.isFunction(x[name]) ? x[name](m) : new Template(x[name]).evaluate(m);
exclusion.push("(" + v.substring(1, v.length - 1) + ")");
Expand Down Expand Up @@ -445,7 +445,7 @@ Object.extend(Selector, {
var el = document.createElement('div'),
isBuggy = false,
propName = '_countedByPrototype',
value = 'x'
value = 'x';
el[propName] = value;
isBuggy = (el.getAttribute(propName) === value);
el = null;
Expand Down

0 comments on commit 2d3e423

Please sign in to comment.