Skip to content

Commit

Permalink
Fix: wrong position of the focus ring element on first focus.
Browse files Browse the repository at this point in the history
  • Loading branch information
NV committed Dec 22, 2013
1 parent 96a70b7 commit 1840ded
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions FlyingFocus.safariextension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>1.3.0</string>
<string>1.4.0</string>
<key>CFBundleVersion</key>
<string>1.3.0</string>
<string>1.4.0</string>
<key>Chrome</key>
<dict/>
<key>Content</key>
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flying-focus",
"version": "1.3.0",
"version": "1.4.0",
"homepage": "http://n12v.com/focus-transition/",
"authors": [
"Nikita Vasilyev <[email protected]>"
Expand Down
1 change: 0 additions & 1 deletion chrome/flying-focus.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ docElem.addEventListener('focus', function(event) {
if (!ringElem) {
isFirstFocus = true;
initialize();
return;
}

var offset = offsetOf(target);
Expand Down
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Flying Focus",
"version": "1.3.0",
"version": "1.4.0",
"description": "Adds a transition to the focus outline when you tab around inputs, buttons, and links.",
"content_scripts": [
{
Expand Down
1 change: 0 additions & 1 deletion standalone/flying-focus.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ docElem.addEventListener('focus', function(event) {
if (!ringElem) {
isFirstFocus = true;
initialize();
return;
}

var offset = offsetOf(target);
Expand Down

0 comments on commit 1840ded

Please sign in to comment.