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

Commit

Permalink
codereview cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelw committed Oct 23, 2013
1 parent 3932ebe commit ed32662
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/TemplateBinding.js
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@
// <template> where certain attributes might trigger side-effects -- and
// for IE which sanitizes certain attributes, disallowing mustache
// replacements in their text.
while (name.length && name[0] === '_') {
while (name[0] === '_') {
name = name.substring(1);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -2161,7 +2161,7 @@ suite('Binding Delegate API', function() {

suite('Compat', function() {
test('underbar bindings', function() {
var div = createTestHtml(
var div = createTestHtml(
'<template bind>' +
'<div _style="color: {{ color }};"></div>' +
'<img _src="{{ url }}">' +
Expand Down

0 comments on commit ed32662

Please sign in to comment.