{"id":18353068,"url":"https://github.com/thecodeholic/lobilist","last_synced_at":"2025-04-06T11:33:17.632Z","repository":{"id":92723365,"uuid":"46168224","full_name":"thecodeholic/lobilist","owner":"thecodeholic","description":"LobiList is TODO list jquery plugin","archived":false,"fork":false,"pushed_at":"2017-12-26T21:21:48.000Z","size":924,"stargazers_count":68,"open_issues_count":9,"forks_count":28,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-03-21T22:41:30.459Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thecodeholic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-11-14T09:02:23.000Z","updated_at":"2024-10-09T17:41:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"6202a5a7-ff2d-4210-97bd-a6691ecd39e4","html_url":"https://github.com/thecodeholic/lobilist","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobilist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobilist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobilist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecodeholic%2Flobilist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thecodeholic","download_url":"https://codeload.github.com/thecodeholic/lobilist/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247478152,"owners_count":20945258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T21:38:24.957Z","updated_at":"2025-04-06T11:33:17.626Z","avatar_url":"https://github.com/thecodeholic.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LobiList\njQuery plugin for todo lists. Supports drag \u0026 drop of todos. Multiple lists with different colors. Support for communication to backend\n\n[View Demo](http://lobianijs.com/site/lobilist)\n\n### Features\n\n- Multiple list support\n- Different styles\n- Drag \u0026 drop list\n- Drag \u0026 drop todos\n- Ajax configuration urls for todo CRUD\n- Checkboxes to mark/unmark todo as done\n- Powerful event management\n\n### Installation and dependencies\n\nLobiList is depended on jQuery, jQuery ui and bootstrap.\n\n- Download plugin source files or\n- run `bower install lobilist --save` to install using `bower`\n\n#### 1. Include necessary css/js files\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml\u003e\n   \u003chead\u003e\n        \u003c!--Default installation--\u003e\n        \u003clink rel=\"stylesheet\" href=\"lib/jquery/jquery-ui.min.css\"/\u003e\n        \u003clink rel=\"stylesheet\" href=\"lib/bootstrap/css/bootstrap.min.css\"/\u003e\n        \u003clink rel=\"stylesheet\" href=\"dist/lobilist.min.css\"\u003e\n\n        \u003c!--Installation using bower. Preferred!!! --\u003e\n        \u003c!--\u003clink rel=\"stylesheet\" href=\"bower_components/bootstrap/dist/css/bootstrap.min.css\"/\u003e--\u003e\n        \u003c!--\u003clink rel=\"stylesheet\" href=\"bower_components/jquery-ui/themes/ui-lightness/jquery-ui.min.css\"/\u003e--\u003e\n        \u003c!--\u003clink rel=\"stylesheet\" href=\"bower_components/lobilist/dist/lobilist.min.css\"/\u003e--\u003e\n   \u003c/head\u003e\n\n   \u003cbody\u003e\n        \u003c!--Default installation--\u003e\n        \u003cscript src=\"lib/jquery/jquery.min.js\"\u003e\u003c/script\u003e\n        \u003cscript src=\"lib/jquery/jquery-ui.min.js\"\u003e\u003c/script\u003e\n        \u003cscript src=\"lib/jquery/jquery.ui.touch-punch-improved.js\"\u003e\u003c/script\u003e\n        \u003cscript src=\"lib/bootstrap/js/bootstrap.min.js\"\u003e\u003c/script\u003e\n        \u003cscript src=\"dist/lobilist.min.js\"\u003e\u003c/script\u003e\n\n        \u003c!--Installation using bower. Preferred!!! --\u003e\n        \u003c!--\u003cscript src=\"bower_components/jquery/dist/jquery.min.js\"\u003e\u003c/script\u003e--\u003e\n        \u003c!--\u003cscript src=\"bower_components/jquery-ui/jquery-ui.min.js\"\u003e\u003c/script\u003e--\u003e\n        \u003c!--\u003cscript src=\"bower_components/jquery-ui-touch-punch-improved/jquery.ui.touch-punch-improved.js\"\u003e\u003c/script\u003e--\u003e\n        \u003c!--\u003cscript src=\"bower_components/bootstrap/dist/js/bootstrap.min.js\"\u003e\u003c/script\u003e--\u003e\n        \u003c!--\u003cscript src=\"bower_components/lobilist/dist/lobilist.min.js\"\u003e\u003c/script\u003e--\u003e\n   \u003c/body\u003e\n\u003c/html\u003e\n```\n\n#### 2. Initialize plugin and use it\n\n### For documentation and examples visit the plugin's [home page](http://lobianijs.com/site/lobilist)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecodeholic%2Flobilist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthecodeholic%2Flobilist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecodeholic%2Flobilist/lists"}