Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix TypeError #1

Merged
merged 1 commit into from Jan 12, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions BierdopjeMove.user.js
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Bierdopje Move
// @namespace http://www.bierdopje.com
// @version 0.3
// @version 0.3.1
// @description Allows you to move and position the blocks on the homepage.
// @match http://*.bierdopje.com/
// @run-at document-start
Expand Down Expand Up @@ -90,7 +90,7 @@ $(function() {
return GM_getValue("collapsedBlocks");
console.log("Found data in collapsedBlocks GM: " + collapsedBlocks);
} else {
return null;
return [];
}
};

Expand Down