Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
3d9dbe9
Add Jasmine Standalone test framework
Nov 21, 2014
4c4d872
Add jQuery support
Nov 21, 2014
46fd18b
getBookmarks: Add guard clause if chrome.bookmarks DNE
Nov 21, 2014
a6f50ea
Define noQuery.extend
Jan 6, 2015
e8d91da
Refactor: EXTRACT CLASS: Provide Bookmark class
Jan 6, 2015
e7385cd
urlTesting(): Reformat
Jan 7, 2015
142b658
urlTesting(): use jQuery.Deferred
Jan 7, 2015
af2187c
urlTesting(): extract repeated template code
Jan 7, 2015
18848c0
urlTesting(): Simplify
Jan 7, 2015
cfe4365
urlTesting(): Rename parameter from obj -> bookmark
Jan 7, 2015
e1017a1
urlTesting(): Refactor: SEPARATE MODIFICATION FROM QUERY
Jan 7, 2015
02c1597
urlTesting(): Refactor: MOVE METHOD
Jan 7, 2015
df15c58
Bookmark: Refactor: EXTRACT METHOD toHtml()
Jan 7, 2015
20974e0
Bookmark#urlTesting: Use $.Deferred interface for updating DOM
Jan 7, 2015
fa08268
Boookmark: Refactor: RENAME METHOD urlTesting -> determineHttpStatus
Jan 7, 2015
b569872
Bookmark: should determine its own HTTP status
Jan 7, 2015
f9d303a
Add Jasmine Ajax Mocking Support
Jan 7, 2015
1a0c10a
Bookmark: Test AJAX logic for status
Jan 7, 2015
603e6f6
treeWalk(): Reformat
Jan 8, 2015
6c72310
Empty out comments and debugging statements
Jan 8, 2015
9284443
treeWalk: Formatting: if/else
Jan 8, 2015
a93d71c
Whitespace
Jan 8, 2015
8b573dd
treeWalk(): Refactor: Replace loop with closure iterator
Jan 8, 2015
24ae0c3
treeWalk(): Refactor: Replace loop with closure iterator
Jan 8, 2015
e076ae4
treeWalk: Refactor: Introduce Null Object: window.bookmarksArray
Jan 8, 2015
a24b70a
treeWalk(): Refactor: MOVE METHOD: Move into a View class
Jan 9, 2015
9407dfc
Container: Introduce class for handling recursive loading
Jan 9, 2015
51a3b4b
Add tests for Container's container() methods
Jan 10, 2015
8d73fc7
View#treeWalk(): Calculate container bar display from Container colle…
Jan 9, 2015
d017fc0
View#treeWalk: extract HTML calculation to Container class
Jan 9, 2015
311ca70
Add Container#bookmarks()
Jan 9, 2015
d17329e
getBookmarks(): Reformat
Jan 9, 2015
fc12142
getBookmarks(): Simplify internal structure
Jan 9, 2015
755515a
getBookmarks(): Refactor: INLINE METHOD
Jan 9, 2015
8914c84
$(document).ready(): Reformat
Jan 10, 2015
585463c
View: Refactor: RENAME METHOD treeWalk -> draw
Jan 10, 2015
532a83d
View: Refactor: EXTRACT METHOD _initializeSelectionControls
Jan 10, 2015
9f8c110
View: Refactor: EXTRACT METHOD
Jan 10, 2015
6eaea5c
View._initializeSelectionControls: DRY it up
Jan 10, 2015
9cef33b
View._initializeDeletionControls: Reformat
Jan 10, 2015
b069e60
Remove noQuery: let's use jQuery for now
Jan 10, 2015
8c550fa
Revert "Remove noQuery: let's use jQuery for now"
Jan 11, 2015
da769b3
Remove jQuery: checkbox event binding
Jan 11, 2015
7c8b407
Remove jQuery: Remove jQuery UI dialog box
Jan 11, 2015
78fb20a
cleanup.html: rm trailing whitespace
Jan 11, 2015
35a05ed
Remove jQuery: Remove $.append() call
Jan 11, 2015
8430ec5
Remove unhelpful comment
Jan 12, 2015
c44950d
Remove jQuery: Remove $(document).ready()
Jan 12, 2015
accb77c
noQuery.get(): Introduce method
Jan 13, 2015
4d43266
bookmarkcleanup_spec: rm tests that fail due to Promises
Jan 13, 2015
85e3bb0
Container: ensure we don't build Bookmarks for scriptlets
Jan 13, 2015
0ce2f46
Remove jQuery
Jan 13, 2015
0aa1b4f
Merge branch 'remove-jquery' into refactor-guided-by-tests
Jan 13, 2015
8ba530d
noQuery.checkboxes: shorten call to slice()
Jan 13, 2015
6548ace
View._initializeSelectionControls: Make more terse
Jan 21, 2015
8d72f1e
Merge branch 'visual-cleanup' into refactor-guided-by-tests
Jan 21, 2015
79572da
Remove tabs permission
Jan 21, 2015
e6756e8
Remove tabs callback: wasn't used
Jan 21, 2015
10bb48c
remove "content_security_policy"
Jan 21, 2015
790f69d
Merge branch 'cleanup-chrome-extension' into refactor-guided-by-tests
Jan 21, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions background.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.create({'url': chrome.extension.getURL('cleanup.html')}, function(tab) {
// Tab opened.
});
chrome.tabs.create({'url': chrome.extension.getURL('cleanup.html')});
});
Loading