Skip to content

Commit 128d45c

Browse files
author
Chris K
committed
Fixed BOM.
1 parent 3ec3d92 commit 128d45c

14 files changed

+14
-14
lines changed

src/ecma-debugger/eventlisteners/evlisteners.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.ev-rt-list
1+
.ev-rt-list
22
{
33
margin-top: 5px;
44
}

src/ecma-debugger/eventlisteners/evlisteners.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
window.cls || (window.cls = {});
1+
window.cls || (window.cls = {});
22

33
cls.EventType = function(type)
44
{

src/ecma-debugger/eventlisteners/evlistenersview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
window.cls || (window.cls = {});
1+
window.cls || (window.cls = {});
22

33
/**
44
* @constructor

src/ecma-debugger/eventlisteners/evlistenertemplates.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(function()
1+
(function()
22
{
33
var EVENT_TYPE = 0;
44
var ORIGIN = 1;

src/ecma-debugger/eventlisteners/evlistenertooltip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";
1+
"use strict";
22

33
window.cls || (window.cls = {});
44

src/lib/arrayprototype.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/**
22
* Return the sum of all the values in the array. If selectorfun is given,
33
* it will be called to retrieve the relevant value for each item in the
44
* array.

src/lib/canvasrenderingcontext2dprototype.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CanvasRenderingContext2D.prototype.draw_2d_gradient = function(top_color_list,
1+
CanvasRenderingContext2D.prototype.draw_2d_gradient = function(top_color_list,
22
bottom_color_list,
33
flip)
44
{

src/lib/dateprototype.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/**
22
* Local ISO strings, currently needed as datetime-local input values
33
* http://dev.w3.org/html5/markup/input.datetime-local.html#input.datetime-local.attrs.value
44
*/

src/lib/nodelistprototype.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**
1+
/**
22
* Returns the index of item in the nodelist
33
* (The same behaviour as js1.6 array.indexOf)
44
* @argument item {Element}

src/lib/objectnamespace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if (!Object.getOwnPropertyNames)
1+
if (!Object.getOwnPropertyNames)
22
{
33
Object.getOwnPropertyNames = function(obj)
44
{

0 commit comments

Comments
 (0)