Last active
January 15, 2018 16:00
-
-
Save shadz3rg/17717f91be21acccec4d to your computer and use it in GitHub Desktop.
Revisions
-
shadz3rg revised this gist
Jan 15, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ // Нужно написать Jquery-плагин: // По клику на кнопку сделать запрос по переданному аргументом url, получить json данные (см. ниже) // И отобразить их в виде таблицы внутри Bootstrap modal-окна, при этом изменив формат даты на "d.m.Y" { "items": [ -
shadz3rg renamed this gist
Jan 15, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
shadz3rg revised this gist
Jan 15, 2018 . 1 changed file with 17 additions and 17 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,21 +3,21 @@ // И отобразить их в виде таблицы внутри Bootstrap modal окна, при этом изменив формат даты на "d.m.Y" { "items": [ { "id" : 1, "date" : "2016-02-18", "title" : "Item 1" }, { "id" : 2, "date" : "2016-02-16", "title" : "Item 2" }, { "id" : 3, "date" : "2016-01-10", "title" : "Item 3" } ] } -
shadz3rg revised this gist
Jan 15, 2018 . No changes.There are no files selected for viewing
-
shadz3rg revised this gist
Jan 15, 2018 . No changes.There are no files selected for viewing
-
shadz3rg revised this gist
Oct 11, 2016 . 1 changed file with 4 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ // Написать Jquery плагин // По клику на кнопку сделать запрос по переданному аргументом url, получить json данные (см. ниже) // И отобразить их в виде таблицы внутри Bootstrap modal окна, при этом изменив формат даты на "d.m.Y" { "items": [ @@ -19,6 +20,4 @@ "title" : "Item 3" } ] } -
shadz3rg created this gist
Feb 18, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ //Написать Jquery плагин: //По клику на кнопку сделать запрос по переданному аргументом url, получить json данные такого вида: { "items": [ { "id" : 1, "date" : "2016-02-18", "title" : "Item 1" }, { "id" : 2, "date" : "2016-02-16", "title" : "Item 2" }, { "id" : 3, "date" : "2016-01-10", "title" : "Item 3" } ] } //И отобразить их в виде таблицы внутри Bootstrap modal окна, при этом изменив формат даты на "d.m.Y"