Skip to content

Commit

Permalink
Revert "1"
Browse files Browse the repository at this point in the history
This reverts commit 1841bde.
  • Loading branch information
SunWuyuan committed Dec 31, 2023
1 parent 3922821 commit dd6e246
Show file tree
Hide file tree
Showing 12 changed files with 297 additions and 297 deletions.
2 changes: 1 addition & 1 deletion build/ejs/python/my_python_projects.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
, jump: function (obj, first) {
$.ajax({
'url': '/my/getPythonProjects',
'type': 'GET',
'type': 'POST',
'data': { curr: obj.curr, limit: obj.limit, state: state },
'success': function (d) {
if (d.length) {
Expand Down
4 changes: 2 additions & 2 deletions build/ejs/python/python_projects.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
, jump: function (obj, first) {
$.ajax({
'url': '/python/view/getPythonProjects',
'type': 'GET',
'type': 'POST',
'data': { curr: obj.curr, limit: obj.limit, type: thetype },
'success': function (d) {
if (d.length) {
Expand Down Expand Up @@ -135,7 +135,7 @@
$.ajax({
'url': '/python/view/seachPythonProjects',
'type': 'GET',
'type': 'POST',
'data': { t: 'p', txt: txt, searchall: document.getElementById("python_src").checked },
'success': function (d) {
if (d.length) {
Expand Down
2 changes: 1 addition & 1 deletion build/ejs/scratch/my_scratch_projects.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
, jump: function (obj, first) {
$.ajax({
'url': '/my/getScratchProjects',
'type': 'GET',
'type': 'POST',
'data': { curr: obj.curr, limit: obj.limit, state: state },
'success': function (d) {
if (d.length) {
Expand Down
4 changes: 2 additions & 2 deletions build/ejs/scratch/scratch_projects.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
, jump: function (obj, first) {
$.ajax({
'url': '/scratch/view/getScratchProjects',
'type': 'GET',
'type': 'POST',
'data': { curr: obj.curr, limit: obj.limit, type: thetype },
'success': function (d) {
if (d.length) {
Expand Down Expand Up @@ -133,7 +133,7 @@
$.ajax({
'url': '/scratch/view/seachScratchProjects',
'type': 'GET',
'type': 'POST',
'data': { t: 's', txt: txt, searchall: document.getElementById("search_src").checked },
'success': function (d) {
if (d.length) {
Expand Down
4 changes: 2 additions & 2 deletions build/ejs/user.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
, jump: function (obj, first) {
$.ajax({
'url': '/api/getUserScratchProjects',
'type': 'GET',
'type': 'POST',
'data': { curr: obj.curr, limit: obj.limit, userid: getQueryString('id') },
'success': function (d) {
if (d.length) {
Expand Down Expand Up @@ -124,7 +124,7 @@
, jump: function (obj, first) {
$.ajax({
'url': '/api/getUserPythonProjects',
'type': 'GET',
'type': 'POST',
'data': { curr: obj.curr, limit: obj.limit, userid: getQueryString('id') },
'success': function (d) {
if (d.length) {
Expand Down
Loading

0 comments on commit dd6e246

Please sign in to comment.