2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-11 18:02:28 +03:00

Use a space after function consistently.

This commit is contained in:
XhmikosR
2013-12-06 12:20:59 +02:00
parent 7b06538c91
commit 4aad52797c
7 changed files with 36 additions and 36 deletions
+4 -4
View File
@@ -22,7 +22,7 @@
}
// These methods connect QUnit to PhantomJS.
QUnit.log = function(obj) {
QUnit.log = function (obj) {
// What is this I dont even
if (obj.message === '[object Object], undefined:undefined') { return }
// Parse some stuff before sending it.
@@ -32,15 +32,15 @@
sendMessage('qunit.log', obj.result, actual, expected, obj.message, obj.source)
}
QUnit.testStart = function(obj) {
QUnit.testStart = function (obj) {
sendMessage('qunit.testStart', obj.name)
}
QUnit.testDone = function(obj) {
QUnit.testDone = function (obj) {
sendMessage('qunit.testDone', obj.name, obj.failed, obj.passed, obj.total)
}
QUnit.moduleStart = function(obj) {
QUnit.moduleStart = function (obj) {
sendMessage('qunit.moduleStart', obj.name)
}