Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions dist/vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -5133,7 +5133,7 @@ return /******/ (function(modules) { // webpackBootstrap
/**
* Append with transition.
*
* @oaram {Element} el
* @param {Element} el
* @param {Element} target
* @param {Vue} vm
* @param {Function} [cb]
Expand All @@ -5148,7 +5148,7 @@ return /******/ (function(modules) { // webpackBootstrap
/**
* InsertBefore with transition.
*
* @oaram {Element} el
* @param {Element} el
* @param {Element} target
* @param {Vue} vm
* @param {Function} [cb]
Expand All @@ -5163,7 +5163,7 @@ return /******/ (function(modules) { // webpackBootstrap
/**
* Remove with transition.
*
* @oaram {Element} el
* @param {Element} el
* @param {Vue} vm
* @param {Function} [cb]
*/
Expand All @@ -5178,7 +5178,7 @@ return /******/ (function(modules) { // webpackBootstrap
* Remove by appending to another parent with transition.
* This is only used in block operations.
*
* @oaram {Element} el
* @param {Element} el
* @param {Element} target
* @param {Vue} vm
* @param {Function} [cb]
Expand Down Expand Up @@ -5226,7 +5226,7 @@ return /******/ (function(modules) { // webpackBootstrap
/**
* Apply transitions with an operation callback.
*
* @oaram {Element} el
* @param {Element} el
* @param {Number} direction
* 1: enter
* -1: leave
Expand Down
10 changes: 5 additions & 5 deletions src/transition/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var _ = require('../util')
/**
* Append with transition.
*
* @oaram {Element} el
* @param {Element} el
* @param {Element} target
* @param {Vue} vm
* @param {Function} [cb]
Expand All @@ -18,7 +18,7 @@ exports.append = function (el, target, vm, cb) {
/**
* InsertBefore with transition.
*
* @oaram {Element} el
* @param {Element} el
* @param {Element} target
* @param {Vue} vm
* @param {Function} [cb]
Expand All @@ -33,7 +33,7 @@ exports.before = function (el, target, vm, cb) {
/**
* Remove with transition.
*
* @oaram {Element} el
* @param {Element} el
* @param {Vue} vm
* @param {Function} [cb]
*/
Expand All @@ -48,7 +48,7 @@ exports.remove = function (el, vm, cb) {
* Remove by appending to another parent with transition.
* This is only used in block operations.
*
* @oaram {Element} el
* @param {Element} el
* @param {Element} target
* @param {Vue} vm
* @param {Function} [cb]
Expand Down Expand Up @@ -96,7 +96,7 @@ exports.blockRemove = function (start, end, vm) {
/**
* Apply transitions with an operation callback.
*
* @oaram {Element} el
* @param {Element} el
* @param {Number} direction
* 1: enter
* -1: leave
Expand Down