Skip to content

Commit

Permalink
ROT13, unix timestamp conversion and minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dither committed Jan 23, 2012
1 parent 5af5b4d commit 31229d3
Show file tree
Hide file tree
Showing 5 changed files with 130 additions and 220 deletions.
6 changes: 3 additions & 3 deletions config.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<widget xmlns="http://www.w3.org/ns/widgets" id="http://my.opera.com/DitherSky/blog/my-modifications-of-extensions" version="1.03b">
<widget xmlns="http://www.w3.org/ns/widgets" id="http://my.opera.com/DitherSky/blog/my-modifications-of-extensions" version="1.04">
<name>MultiConvertor</name>
<author href="http://my.opera.com/DitherSky/blog/">DitherSky</author>
<author href="http://my.opera.com/DitherSky/blog/">Dither</author>
<icon src="icons/icon.gif"/>
<!--<credit>icon.png by Iconfinder - non-comercial free license.</credit> -->
<!--<credit>icon.png from Iconfinder - non-comercial free license.</credit> -->
</widget>
1 change: 1 addition & 0 deletions css/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ textarea {
margin-bottom:7px;
font-family: "consolas", "Terminus", "lucida console", "courier new", "courier", monospace;
font-size: 12px;
height: 350px !important;
}

br {
Expand Down
5 changes: 1 addition & 4 deletions includes/injected.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
// Opera specific
function selText(w) {
var t;
return w ? w.document.getSelection() || (t = w.opera.lastClick && w.opera.lastClick.textArea) && t.value.substring(t.selectionStart, t.selectionEnd) : ''
};
function selText(w) { var t; return w ? w.document.getSelection() || (t = w.opera.lastClick && w.opera.lastClick.textArea) && t.value.substring(t.selectionStart, t.selectionEnd) : '' };

var background;
opera.extension.onmessage = function( event ){
Expand Down
2 changes: 1 addition & 1 deletion popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<body>
<fieldset class="config">
<span id="spanmethod">
<label for="encmethod" id="labelencmethod">Conversion algorithm:</label>
<label for="encmethod" id="labelencmethod">Algorithm:</label>
<select name="encmethod" id="encmethod" accesskey="M" tabindex="2">
</select>
</span>
Expand Down
Loading

0 comments on commit 31229d3

Please sign in to comment.