Skip to content

Commit

Permalink
Merge pull request #2 from kpeckett/remove-options-page
Browse files Browse the repository at this point in the history
Removed license check & license check page
  • Loading branch information
tomasko126 committed Oct 12, 2014
2 parents 2af426a + 158d454 commit f928112
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 206 deletions.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ storage_set = function(key, value) {
if (!SAFARI) {
// Open options on button click.
chrome.browserAction.onClicked.addListener(function() {
var page = chrome.extension.getURL("options/index.html");
var page = chrome.extension.getURL("options/general.html");
chrome.tabs.query({url:page}, function(results) {
if (results.length > 0)
chrome.tabs.update(results[0].id, {active:true, url:page});
Expand Down
78 changes: 0 additions & 78 deletions license/check.js

This file was deleted.

48 changes: 0 additions & 48 deletions license/setup.html

This file was deleted.

54 changes: 0 additions & 54 deletions license/setup1.js

This file was deleted.

3 changes: 1 addition & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@
"scripts": [
"port.js",
"jquery.min.js",
"license/check.js",
"channels.js",
"background.js"
]
},
"options_page": "options/index.html",
"options_page": "options/general.html",
"minimum_chrome_version": "17",
"incognito": "spanning",
"browser_action": {
Expand Down
2 changes: 1 addition & 1 deletion options/general.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h1>CatBlock Options</h1>
<br/>
</div>

<script src="general1.js"></script>
<script src="general.js"></script>

<!--
<hr/>
Expand Down
File renamed without changes.
17 changes: 0 additions & 17 deletions options/index.html

This file was deleted.

5 changes: 0 additions & 5 deletions options/index1.js

This file was deleted.

0 comments on commit f928112

Please sign in to comment.