Skip to content

Commit 9209716

Browse files
committed
Updating links to annotated source
1 parent 3b48925 commit 9209716

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

index.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ require.config({
9494

9595
## animate `$(el).animate(properties, [speed], [callback]) -> jQuery`
9696

97-
[Annotated source](http://donejs.com/jquery/docs/jquery.animate.html)
97+
[Annotated source](http://jquerypp.com/release/latest/docs/animate.html)
9898

9999
[jQuery.animate](http://donejs.com/docs.html#!jQuery.animate) overwrites `$.fn.animate` to use
100100
CSS 3 animations if possible.
@@ -117,7 +117,7 @@ Since CSS transitions are implemented natively in the browser and can make use o
117117

118118
## compare `$(elA).compare(elB) -> Number`
119119

120-
[Annotated source](http://donejs.com/jquery/docs/jquery.compare.html)
120+
[Annotated source](http://jquerypp.com/release/latest/docs/compare.html)
121121

122122
[jQuery.compare](http://donejs.com/docs.html#!jQuery.compare) adds `$.fn.compare` to compare the position of two nodes. It returns a number that represents a bitmask showing how they are positioned relative to each other. The following list shows the `bitmask`, the __number__ and what it means for a `$.fn.compare` call like `$('#foo').compare($('#bar'))`:
123123

@@ -142,7 +142,7 @@ This is useful to rapidly compare element positions which is common when widgets
142142

143143
## cookie `$.cookie(name, [value], [options]) -> Object|String`
144144

145-
[Annotated source](http://donejs.com/jquery/docs/jquery.cookie.html)
145+
[Annotated source](http://jquerypp.com/release/latest/docs/cookie.html)
146146

147147
[jQuery.cookie](http://donejs.com/docs.html#!jQuery.cookie) packages Klaus Hartl's [jQuery cookie](https://github.com/carhartl/jquery-cookie) plugin for manipulating cookies. Use it like:
148148

@@ -171,7 +171,7 @@ The example uses `jQuery.cookie` and [formParams](#formParams) to persist a form
171171

172172
## dimensions
173173

174-
[Annotated source](http://donejs.com/jquery/docs/jquery.dimensions.html)
174+
[Annotated source](http://jquerypp.com/release/latest/docs/dimensions.html)
175175

176176
[jQuery.dimensions](http://donejs.com/docs.html#!jQuery.dimensions) overwrites `$.fn.innerWidth`, `$.fn.outerWidth`, `$.fn.innerHeight`, `$.fn.outerHeight` and enables `$.fn.animate` to animate these values. Inner dimensions include the padding where outer dimensions also take care of borders and margins (if *includeMargin* is set to `true`). Set and read these values using:
177177

@@ -195,7 +195,7 @@ The following example lets you change the different width properties used by `$(
195195

196196
## formParams `$(form).formParams([convert]) -> Object|jQuery`
197197

198-
[Annotated source](http://donejs.com/jquery/docs/jquery.form_params.html)
198+
[Annotated source](http://jquerypp.com/release/latest/docs/form_params.html)
199199

200200
[jQuery.formParams](http://donejs.com/docs.html#!jQuery.formParams) adds `$.fn.formParams` which serializes a form into a JavaScript object. It creates nested objects by using bracket notation in the form element name. If *convert* is `true`, values that look like numbers or booleans will be converted and empty strings won't be added to the object. For a form like this:
201201

@@ -233,7 +233,7 @@ Update the form in the following example to see a JSON representation of the obj
233233

234234
## range `$.Range([el]) -> range` `$(el).range() -> range`
235235

236-
[Annotated source](http://donejs.com/jquery/docs/jquery.range.html)
236+
[Annotated source](http://jquerypp.com/release/latest/docs/range.html)
237237

238238
Use [jQuery.Range](http://donejs.com/docs.html#!jQuery.Range) to create, move and compare text ranges. Use `$.Range.current()` to get the currently selected text range. `$(el).range()` returns a text range on an element.
239239

@@ -302,7 +302,7 @@ The following example uses `jQuery.range` to
302302

303303
## selection `$(el).selection([start], [end]) -> Object|jQuery`
304304

305-
[Annotated source](http://donejs.com/jquery/docs/jquery.selection.html)
305+
[Annotated source](http://jquerypp.com/release/latest/docs/selection.html)
306306

307307
[jQuery.selection](http://donejs.com/docs.html#!jQuery.selection) adds `$.fn.selection` to set or retrieve the currently selected text range. It works on all elements:
308308

@@ -324,7 +324,7 @@ The following example shows how `$.fn.selection` can be used. Initially the sele
324324

325325
## styles `$(el).styles() -> Object`
326326

327-
[Annotated source](http://donejs.com/jquery/docs/jquery.styles.html)
327+
[Annotated source](http://jquerypp.com/release/latest/docs/styles.html)
328328

329329
[jQuery.styles](http://donejs.com/docs.html#!jQuery.styles) adds `$.fn.styles` as a fast way of getting a set of computed styles from an element. It performs much faster than retrieving them individually e.g. by using [jQuery.css()](http://api.jquery.com/css/). Computed styles reflect the actual current style of an element, including browser defaults and CSS settings.
330330

@@ -340,7 +340,7 @@ the runtime to the equivalent [jQuery.height](http://api.jquery.com/height/):
340340

341341
## within `$(el).within(left, top, [useOffsetCache]) -> jQuery`
342342

343-
[Annotated source](http://donejs.com/jquery/docs/jquery.within.html)
343+
[Annotated source](http://jquerypp.com/release/latest/docs/within.html)
344344

345345
[jQuery.within](http://donejs.com/docs.html#!jQuery.within) adds `$.fn.within` and `$.fn.withinBox` that return all elements having a given position or area in common. The following example returns all `div` elements having the point 200px left and 200px from the top in common:
346346

@@ -364,7 +364,7 @@ Move the mouse in the following example and it will show the ids for `div` eleme
364364

365365
## destroyed `destroyed`
366366

367-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.destroyed.html)
367+
[Annotated source](http://jquerypp.com/release/latest/docs/destroyed.html)
368368

369369
The `destroyed` event is triggered by [jQuery.event.destroyed](http://donejs.com/docs.html#!jQuery.event.destroyed) when the element is removed from the DOM using one of the jQuery [manipulation methods](http://api.jquery.com/category/manipulation/).
370370

@@ -378,7 +378,7 @@ $('form').on('destroyed', function() {
378378

379379
## drag `dragdown` `draginit` `dragmove` `dragend` `dragover` `dragout`
380380

381-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.drag.html)
381+
[Annotated source](http://jquerypp.com/release/latest/docs/drag.html)
382382

383383
[jQuery.event.drag](http://donejs.com/docs.html#!jQuery.event.drag) adds *delegatable* drag events to jQuery:
384384

@@ -439,7 +439,7 @@ The `drag` object (passed to the event handler as the second parameter) can be u
439439

440440
## drop `dropinit` `dropover` `dropout` `dropmove` `dropon` `dropend`
441441

442-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.drop.html)
442+
[Annotated source](http://jquerypp.com/release/latest/docs/drop.html)
443443

444444
[jQuery.event.drop](http://donejs.com/docs.html#!jQuery.event.drop) complements `jQuery.event.drag` with *delegatable* drop events:
445445

@@ -482,7 +482,7 @@ The following example shows two draggable elements and a drop area. When a drag
482482

483483
## fastfix
484484

485-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.fastfix.html)
485+
[Annotated source](http://jquerypp.com/release/latest/docs/fastfix.html)
486486

487487
[jQuery.event.fastfix](http://donejs.com/docs.html#!jQuery.event.fastfix) speeds up `jQuery.event.fix` by using ECMAScript 5
488488
getters. `jQuery.event.fix` is used to normalize a DOM event before it gets passed as a
@@ -498,7 +498,7 @@ performance](http://jsperf.com/jquery-event-fix/6) of the original `jQuery.event
498498

499499
## hover `hoverinit` `hoverenter` `hovermove` `hoverleave`
500500

501-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.hover.html)
501+
[Annotated source](http://jquerypp.com/release/latest/docs/hover.html)
502502

503503
[jQuery.event.hover](http://donejs.com/docs.html#!jQuery.event.hover) provides the following hover events:
504504

@@ -536,7 +536,7 @@ The following example shows `jQuery.event.hover` with different settings for dis
536536

537537
## key `event.keyName()`
538538

539-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.key.html)
539+
[Annotated source](http://jquerypp.com/release/latest/docs/key.html)
540540

541541
[jQuery.event.key](http://donejs.com/docs.html#!jQuery.event.key) adds a `.keyName()` method to the event object that returns a string representation of the current key:
542542

@@ -587,7 +587,7 @@ The following example implements a `tabs` widget using [CanJS](http://canjs.us).
587587

588588
### triggerAsync `$(el).triggerAsync(event, [success], [prevented])`
589589

590-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.default.html)
590+
[Annotated source](http://jquerypp.com/release/latest/docs/default.html)
591591

592592
[jQuery.fn.triggerAsync](http://donejs.com/docs.html#!jQuery.fn.triggerAsync) triggers an event and calls a *success* handler when it has finished propagating through the DOM and no handler called `event.preventDefault()` or returned `false`. The *prevented* callback will be used otherwise:
593593

@@ -601,7 +601,7 @@ $('panel').triggerAsync('show', function(){
601601

602602
### default events `eventname.default`
603603

604-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.default.html)
604+
[Annotated source](http://jquerypp.com/release/latest/docs/default.html)
605605

606606
[jQuery.event.default](http://donejs.com/docs.html#!jQuery.event.default) adds default event handlers. A default event runs when all other event handlers have been triggered and none has called `event.preventDefault()` or returned `false`. Default events are prefixed with the `default` namespace. The following example adds a default `toggle` event:
607607

@@ -620,7 +620,7 @@ $('#text').on('toggle', function(ev, animation) {
620620

621621
### pause and resume `event.pause()` `event.resume()`
622622

623-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.pause.html)
623+
[Annotated source](http://jquerypp.com/release/latest/docs/pause.html)
624624

625625
Pausing an event works similar to [.stopImmediatePropagation()](http://api.jquery.com/event.stopImmediatePropagation/) by calling `event.pause()`. Calling `event.resume()` will continue propagation. This is great when doing asynchronous processing in an event handler:
626626

@@ -636,7 +636,7 @@ $('#todos').on('show', function(ev){
636636

637637
## resize `resize`
638638

639-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.resize.html)
639+
[Annotated source](http://jquerypp.com/release/latest/docs/resize.html)
640640

641641
[jQuery.event.resize](http://donejs.com/docs.html#!jQuery.event.resize) allows you to listen to `resize` events on arbitrary elements. Unlike other events that bubble from the target element to the document the `resize` event will propagate from the outside-in.
642642
This means that outside elements will always resize first. Trigger the `resize` event whenever the dimensions of an element change and inside elements should adjust as well.
@@ -658,7 +658,7 @@ The `resize` event makes creating application like layouts a lot easier. The fol
658658

659659
## swipe `swipeleft` `swiperight` `swipeup` `swipedown` `swipe`
660660

661-
[Annotated source](http://donejs.com/jquery/docs/jquery.event.swipe.html)
661+
[Annotated source](http://jquerypp.com/release/latest/docs/swipe.html)
662662

663663
[jQuery.event.swipe](http://donejs.com/docs.html#!jQuery.event.swipe) adds support for swipe motions providing the *delegatable* `swipeleft`, `swiperight`, `swipedown`, `swipeup` and `swipe` events:
664664

@@ -882,7 +882,7 @@ __1.0 Beta 2__
882882
- fix: [Security error in jQuery.animate](https://github.com/bitovi/jquerypp/issues/5)
883883
- *jquerypp.com*
884884
- jsFiddle examples for [cookie](#cookie), [compare](#compare), [range](#range), [styles](#styles) and [key](#key)
885-
- Links to annotated sources ([e.g. jQuery.animate](http://donejs.com/jquery/docs/jquery.animate.html))
885+
- Links to annotated sources ([e.g. jQuery.animate](http://jquerypp.com/release/latest/docs/animate.html))
886886
- Changelog and list of heroes section
887887

888888
__1.0 Beta__ (June 1st 2012)

0 commit comments

Comments
 (0)