Skip to content

Commit

Permalink
html: source format
Browse files Browse the repository at this point in the history
  • Loading branch information
yffrankwang committed Apr 23, 2023
1 parent 5a41125 commit 61025e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions panda-html/src/html/panda/html/jquery/js/jquery-plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -708,8 +708,8 @@
$.fn.center = function(c) {
c = c || {};
return this.each(function() {
var $s = $(this);
var $t = c.target ? $(c.target) : $s.parent();
var $s = $(this),
$t = c.target ? $(c.target) : $s.parent();

var tl = $t.scrollLeft(),
tt = $t.scrollTop(),
Expand Down
4 changes: 2 additions & 2 deletions panda-html/src/html/panda/html/jquery/js/jquery.ui.center.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
$.fn.center = function(c) {
c = c || {};
return this.each(function() {
var $s = $(this);
var $t = c.target ? $(c.target) : $s.parent();
var $s = $(this),
$t = c.target ? $(c.target) : $s.parent();

var tl = $t.scrollLeft(),
tt = $t.scrollTop(),
Expand Down

0 comments on commit 61025e3

Please sign in to comment.