Fix typo: change Postion to Position

This commit is contained in:
Petteri Räty 2013-01-30 14:06:59 +02:00 committed by Joe Ferris
parent a4a0034b29
commit b06025b626
1 changed files with 3 additions and 3 deletions

View File

@ -286,7 +286,7 @@ Capybara = {
this.trigger(index, "change");
},
centerPostion: function(element) {
centerPosition: function(element) {
this.reflow(element);
var rect = element.getBoundingClientRect();
var position = {
@ -320,7 +320,7 @@ Capybara = {
dragTo: function (index, targetIndex) {
var element = this.nodes[index], target = this.nodes[targetIndex];
var position = this.centerPostion(element);
var position = this.centerPosition(element);
var options = {
clientX: position.x,
clientY: position.y
@ -335,7 +335,7 @@ Capybara = {
options.clientY += 1;
mouseTrigger('mousemove', options);
position = this.centerPostion(target);
position = this.centerPosition(target);
options = {
clientX: position.x,
clientY: position.y