From 047e593d98a130b53bb44bf5c8cb45c4d09618fc Mon Sep 17 00:00:00 2001 From: Fluidbyte Date: Mon, 17 Sep 2012 12:21:32 -0700 Subject: [PATCH] Minor fixes --- components/color_picker/dialog.php | 6 ++++++ components/color_picker/init.js | 6 ++++++ components/keybindings/init.js | 4 ++-- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/components/color_picker/dialog.php b/components/color_picker/dialog.php index 37adefe..91df74e 100644 --- a/components/color_picker/dialog.php +++ b/components/color_picker/dialog.php @@ -1,3 +1,9 @@ + +
diff --git a/components/color_picker/init.js b/components/color_picker/init.js index 7c71cd9..821b164 100644 --- a/components/color_picker/init.js +++ b/components/color_picker/init.js @@ -1,3 +1,9 @@ +/* +* Copyright (c) Codiad & Kent Safranski (codiad.com), distributed +* as-is and without warranty under the MIT License. See +* [root]/license.txt for more. This information must remain intact. +*/ + $(function(){ color_picker.init(); }); diff --git a/components/keybindings/init.js b/components/keybindings/init.js index efa5fd1..04f9c64 100755 --- a/components/keybindings/init.js +++ b/components/keybindings/init.js @@ -45,8 +45,8 @@ var keybindings = { $.ctrl('f', function(){ editor.open_search('find'); }); // Replace [CTRL+R] ///////////////////////////////////////////// - $.ctrl('f', function(){ editor.open_search('replace'); }); + $.ctrl('r', function(){ editor.open_search('replace'); }); } -} \ No newline at end of file +}; \ No newline at end of file