Skip to content

Commit

Permalink
Changed to manifest version 2 on Chrome and bumped up to fulmo versio…
Browse files Browse the repository at this point in the history
…n 1.0.2
  • Loading branch information
jun66j5 committed Sep 19, 2012
1 parent d2ee960 commit ba0637c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
10 changes: 0 additions & 10 deletions chrome/editor.html
Expand Up @@ -16,16 +16,6 @@
<script type="text/javascript" src="scripts/editor.js"></script>
<script type="text/javascript" src="scripts/local-file.js"></script>
<script type="text/javascript" src="scripts/startup-editor.js"></script>
<script type="text/javascript">/*<![CDATA[*/
jQuery(document).ready(function($) {
$('a').attr('href', 'javascript:void(0)');
$('#tool-bar a').each(function() {
if (this.getAttribute('draggable') === null) {
this.setAttribute('draggable', 'false');
}
});
});
/*]]>*/</script>
</head>
<body>
<div id="tool-bar-wrapper">
Expand Down
7 changes: 4 additions & 3 deletions chrome/manifest.json
@@ -1,9 +1,10 @@
{
"name": "__MSG_fulmo_name__",
"version": "1.0.1",
"version": "1.0.2",
"manifest_version": 2,
"description": "__MSG_fulmo_description__",
"options_page": "settings.html",
"background_page": "background.html",
"background": { "page": "background.html" },
"icons": {
"128": "images/icon128.png",
"48": "images/icon48.png",
Expand All @@ -13,7 +14,7 @@
"browser_action": {
"default_icon": "images/icon19.png",
"default_title": "__MSG_fulmo_menu_title__",
"popup": "popup.html"
"default_popup": "popup.html"
},
"content_scripts": [
{
Expand Down
10 changes: 10 additions & 0 deletions chrome/scripts/editor.js
Expand Up @@ -1709,3 +1709,13 @@ var screenshotSenderEditor = function(EII) {
}

};


jQuery(document).ready(function($) {
$('a').attr('href', 'javascript:void(0)');
$('#tool-bar a').each(function() {
if (this.getAttribute('draggable') === null) {
this.setAttribute('draggable', 'false');
}
});
});
2 changes: 1 addition & 1 deletion firefox/install.rdf
Expand Up @@ -3,7 +3,7 @@
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<RDF:Description RDF:about="urn:mozilla:install-manifest">
<em:id>{375358e1-7c99-4f32-9648-82ca4a6701ea}</em:id>
<em:version>1.0.1</em:version>
<em:version>1.0.2</em:version>
<em:type>2</em:type>
<em:iconURL>chrome://fulmo/skin/images/icon32.png</em:iconURL>
<em:optionsURL>chrome://fulmo/content/settings.xul</em:optionsURL>
Expand Down

0 comments on commit ba0637c

Please sign in to comment.