Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/jquery/ui
File: sortable.js
this._trigger( "receive", event, this._uiHash( this.fromOutside ) );
[1500] Fix | Delete
} );
[1501] Fix | Delete
}
[1502] Fix | Delete
if ( ( this.fromOutside ||
[1503] Fix | Delete
this.domPosition.prev !==
[1504] Fix | Delete
this.currentItem.prev().not( ".ui-sortable-helper" )[ 0 ] ||
[1505] Fix | Delete
this.domPosition.parent !== this.currentItem.parent()[ 0 ] ) && !noPropagation ) {
[1506] Fix | Delete
[1507] Fix | Delete
// Trigger update callback if the DOM position has changed
[1508] Fix | Delete
delayedTriggers.push( function( event ) {
[1509] Fix | Delete
this._trigger( "update", event, this._uiHash() );
[1510] Fix | Delete
} );
[1511] Fix | Delete
}
[1512] Fix | Delete
[1513] Fix | Delete
// Check if the items Container has Changed and trigger appropriate
[1514] Fix | Delete
// events.
[1515] Fix | Delete
if ( this !== this.currentContainer ) {
[1516] Fix | Delete
if ( !noPropagation ) {
[1517] Fix | Delete
delayedTriggers.push( function( event ) {
[1518] Fix | Delete
this._trigger( "remove", event, this._uiHash() );
[1519] Fix | Delete
} );
[1520] Fix | Delete
delayedTriggers.push( ( function( c ) {
[1521] Fix | Delete
return function( event ) {
[1522] Fix | Delete
c._trigger( "receive", event, this._uiHash( this ) );
[1523] Fix | Delete
};
[1524] Fix | Delete
} ).call( this, this.currentContainer ) );
[1525] Fix | Delete
delayedTriggers.push( ( function( c ) {
[1526] Fix | Delete
return function( event ) {
[1527] Fix | Delete
c._trigger( "update", event, this._uiHash( this ) );
[1528] Fix | Delete
};
[1529] Fix | Delete
} ).call( this, this.currentContainer ) );
[1530] Fix | Delete
}
[1531] Fix | Delete
}
[1532] Fix | Delete
[1533] Fix | Delete
//Post events to containers
[1534] Fix | Delete
function delayEvent( type, instance, container ) {
[1535] Fix | Delete
return function( event ) {
[1536] Fix | Delete
container._trigger( type, event, instance._uiHash( instance ) );
[1537] Fix | Delete
};
[1538] Fix | Delete
}
[1539] Fix | Delete
for ( i = this.containers.length - 1; i >= 0; i-- ) {
[1540] Fix | Delete
if ( !noPropagation ) {
[1541] Fix | Delete
delayedTriggers.push( delayEvent( "deactivate", this, this.containers[ i ] ) );
[1542] Fix | Delete
}
[1543] Fix | Delete
if ( this.containers[ i ].containerCache.over ) {
[1544] Fix | Delete
delayedTriggers.push( delayEvent( "out", this, this.containers[ i ] ) );
[1545] Fix | Delete
this.containers[ i ].containerCache.over = 0;
[1546] Fix | Delete
}
[1547] Fix | Delete
}
[1548] Fix | Delete
[1549] Fix | Delete
//Do what was originally in plugins
[1550] Fix | Delete
if ( this.storedCursor ) {
[1551] Fix | Delete
this.document.find( "body" ).css( "cursor", this.storedCursor );
[1552] Fix | Delete
this.storedStylesheet.remove();
[1553] Fix | Delete
}
[1554] Fix | Delete
if ( this._storedOpacity ) {
[1555] Fix | Delete
this.helper.css( "opacity", this._storedOpacity );
[1556] Fix | Delete
}
[1557] Fix | Delete
if ( this._storedZIndex ) {
[1558] Fix | Delete
this.helper.css( "zIndex", this._storedZIndex === "auto" ? "" : this._storedZIndex );
[1559] Fix | Delete
}
[1560] Fix | Delete
[1561] Fix | Delete
this.dragging = false;
[1562] Fix | Delete
[1563] Fix | Delete
if ( !noPropagation ) {
[1564] Fix | Delete
this._trigger( "beforeStop", event, this._uiHash() );
[1565] Fix | Delete
}
[1566] Fix | Delete
[1567] Fix | Delete
//$(this.placeholder[0]).remove(); would have been the jQuery way - unfortunately,
[1568] Fix | Delete
// it unbinds ALL events from the original node!
[1569] Fix | Delete
this.placeholder[ 0 ].parentNode.removeChild( this.placeholder[ 0 ] );
[1570] Fix | Delete
[1571] Fix | Delete
if ( !this.cancelHelperRemoval ) {
[1572] Fix | Delete
if ( this.helper[ 0 ] !== this.currentItem[ 0 ] ) {
[1573] Fix | Delete
this.helper.remove();
[1574] Fix | Delete
}
[1575] Fix | Delete
this.helper = null;
[1576] Fix | Delete
}
[1577] Fix | Delete
[1578] Fix | Delete
if ( !noPropagation ) {
[1579] Fix | Delete
for ( i = 0; i < delayedTriggers.length; i++ ) {
[1580] Fix | Delete
[1581] Fix | Delete
// Trigger all delayed events
[1582] Fix | Delete
delayedTriggers[ i ].call( this, event );
[1583] Fix | Delete
}
[1584] Fix | Delete
this._trigger( "stop", event, this._uiHash() );
[1585] Fix | Delete
}
[1586] Fix | Delete
[1587] Fix | Delete
this.fromOutside = false;
[1588] Fix | Delete
return !this.cancelHelperRemoval;
[1589] Fix | Delete
[1590] Fix | Delete
},
[1591] Fix | Delete
[1592] Fix | Delete
_trigger: function() {
[1593] Fix | Delete
if ( $.Widget.prototype._trigger.apply( this, arguments ) === false ) {
[1594] Fix | Delete
this.cancel();
[1595] Fix | Delete
}
[1596] Fix | Delete
},
[1597] Fix | Delete
[1598] Fix | Delete
_uiHash: function( _inst ) {
[1599] Fix | Delete
var inst = _inst || this;
[1600] Fix | Delete
return {
[1601] Fix | Delete
helper: inst.helper,
[1602] Fix | Delete
placeholder: inst.placeholder || $( [] ),
[1603] Fix | Delete
position: inst.position,
[1604] Fix | Delete
originalPosition: inst.originalPosition,
[1605] Fix | Delete
offset: inst.positionAbs,
[1606] Fix | Delete
item: inst.currentItem,
[1607] Fix | Delete
sender: _inst ? _inst.element : null
[1608] Fix | Delete
};
[1609] Fix | Delete
}
[1610] Fix | Delete
[1611] Fix | Delete
} );
[1612] Fix | Delete
[1613] Fix | Delete
} );
[1614] Fix | Delete
[1615] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function