Skip to content

Commit a65df8e

Browse files
Merge branch 'master' of github.com:sstephenson/prototype
2 parents 5968d82 + 73850cf commit a65df8e

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

src/prototype/dom.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
/**
1010
* == DOM ==
11+
*
1112
* Extensions to DOM elements, plus other utilities for DOM traversal
1213
* and modification.
1314
*

src/prototype/dom/event.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,6 +1132,7 @@
11321132
Element.addMethods({
11331133
/**
11341134
* Element.fire(@element, eventName[, memo[, bubble = true]]) -> Event
1135+
*
11351136
* See [[Event.fire]].
11361137
*
11371138
* Fires a custom event with the current element as its target.
@@ -1177,18 +1178,21 @@
11771178

11781179
/**
11791180
* Element.observe(@element, eventName, handler) -> Element
1181+
*
11801182
* See [[Event.observe]].
11811183
**/
11821184
observe: observe,
11831185

11841186
/**
11851187
* Element.stopObserving(@element[, eventName[, handler]]) -> Element
1188+
*
11861189
* See [[Event.stopObserving]].
11871190
**/
11881191
stopObserving: stopObserving,
11891192

11901193
/**
11911194
* Element.on(@element, eventName[, selector], callback) -> Element
1195+
*
11921196
* See [[Event.on]].
11931197
**/
11941198
on: on

src/prototype/lang.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
/**
1717
* == Language ==
18+
*
1819
* Additions to JavaScript's "standard library" and extensions to
1920
* built-in JavaScript objects.
2021
**/

src/prototype/lang/range.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,13 @@ var ObjectRange = Class.create(Enumerable, (function() {
9494
function initialize(start, end, exclusive) {
9595
/**
9696
* ObjectRange#start -> ?
97+
*
9798
* The lower bounding value of the range.
9899
**/
99100
this.start = start;
100101
/**
101102
* ObjectRange#end -> ?
103+
*
102104
* The upper bounding value of the range.
103105
**/
104106
this.end = end;

0 commit comments

Comments
 (0)