Match @lhorie style
I don't usually write JS w/o semicolons, so no surprise I got this wrong at first.
This commit is contained in:
parent
36bfc6892b
commit
9f1afea9e1
2 changed files with 3 additions and 3 deletions
|
|
@ -9,7 +9,7 @@ var limiter = require("../limiter")
|
||||||
o.spec("fps limiter", function() {
|
o.spec("fps limiter", function() {
|
||||||
var $window, root
|
var $window, root
|
||||||
|
|
||||||
[
|
void [
|
||||||
"setTimeout",
|
"setTimeout",
|
||||||
"requestAnimationFrame",
|
"requestAnimationFrame",
|
||||||
].forEach(function(type) {
|
].forEach(function(type) {
|
||||||
|
|
|
||||||
|
|
@ -13,12 +13,12 @@ var makeRouter = require("../router")
|
||||||
o.spec("m.route", function() {
|
o.spec("m.route", function() {
|
||||||
var $window, root, router
|
var $window, root, router
|
||||||
|
|
||||||
[
|
void [
|
||||||
"setTimeout",
|
"setTimeout",
|
||||||
"requestAnimationFrame"
|
"requestAnimationFrame"
|
||||||
].forEach(function(timing) {
|
].forEach(function(timing) {
|
||||||
o.spec(timing, function() {
|
o.spec(timing, function() {
|
||||||
[
|
void [
|
||||||
"#",
|
"#",
|
||||||
"?",
|
"?",
|
||||||
"#!",
|
"#!",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue