Files
chrome-extensions-samples/functional-samples/sample.bookmarks/popup.html
Sebastian Benz dc2174377a Add prettier and eslint (#831)
* Ignores archived samples
* Uses eslint/recommended rules
* Runs prettier and eslint (including --fix) pre-commit via husky
* Adds new npm scripts: 'lint', 'lint:fix' and 'prettier'
* Does not lint inline js code
* Fix all prettier and eslint errors
* Add custom prettier rules
* Apply custom prettier rules
* Update readme to explain how to setup the repo
* addressed comments
2023-02-22 13:25:39 +01:00

20 lines
695 B
HTML

<html>
<head>
<link rel="stylesheet" href="third-party/jquery-ui.css" />
<link rel="stylesheet" href="third-party/jquery-ui.structure.css" />
<link rel="stylesheet" href="third-party/jquery-ui.theme.css" />
<link rel="stylesheet" href="popup.css" />
<script src="third-party/jquery-1.12.4.js"></script>
<script src="third-party/jquery-ui-1.12.1.js"></script>
</head>
<body style="width: 400px">
<div>Search Bookmarks: <input id="search" /></div>
<div id="bookmarks"></div>
<div id="editdialog"></div>
<div id="deletedialog"></div>
<div id="adddialog"></div>
<div id="test-frame"></div>
<script src="popup.js"></script>
</body>
</html>