Skip to content
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.

Commit

Permalink
Updating brackets SHA
Browse files Browse the repository at this point in the history
  • Loading branch information
njx committed Apr 8, 2012
1 parent 57c53c5 commit 96f31da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brackets
Submodule brackets updated 92 files
+5 −0 .gitignore
+0 −271 src/InlineEditorProviders.js
+91 −0 src/LiveDevelopment/Agents/CSSAgent.js
+74 −0 src/LiveDevelopment/Agents/ConsoleAgent.js
+304 −0 src/LiveDevelopment/Agents/DOMAgent.js
+241 −0 src/LiveDevelopment/Agents/DOMHelpers.js
+504 −0 src/LiveDevelopment/Agents/DOMNode.js
+91 −0 src/LiveDevelopment/Agents/EditAgent.js
+182 −0 src/LiveDevelopment/Agents/GotoAgent.js
+101 −0 src/LiveDevelopment/Agents/HighlightAgent.js
+61 −0 src/LiveDevelopment/Agents/NetworkAgent.js
+102 −0 src/LiveDevelopment/Agents/RemoteAgent.js
+316 −0 src/LiveDevelopment/Agents/RemoteFunctions.js
+127 −0 src/LiveDevelopment/Agents/ScriptAgent.js
+166 −0 src/LiveDevelopment/Documents/CSSDocument.js
+106 −0 src/LiveDevelopment/Documents/HTMLDocument.js
+100 −0 src/LiveDevelopment/Documents/JSDocument.js
+336 −0 src/LiveDevelopment/Inspector/Inspector.js
+2,637 −0 src/LiveDevelopment/Inspector/Inspector.json
+5,481 −0 src/LiveDevelopment/Inspector/inspector.html
+268 −0 src/LiveDevelopment/Inspector/jsdoc.rb
+404 −0 src/LiveDevelopment/LiveDevelopment.js
+130 −0 src/LiveDevelopment/main.js
+17 −0 src/LiveDevelopment/main.less
+57 −30 src/brackets.js
+0 −0 src/command/CommandManager.js
+1 −0 src/command/Commands.js
+1 −1 src/command/KeyBindingManager.js
+0 −0 src/command/KeyMap.js
+6 −2 src/command/Menus.js
+23 −7 src/debug/DebugCommandHandlers.js
+74 −32 src/document/DocumentCommandHandlers.js
+82 −34 src/document/DocumentManager.js
+159 −0 src/document/TextRange.js
+525 −0 src/editor/CSSInlineEditor.js
+4 −4 src/editor/CodeHintManager.js
+334 −76 src/editor/Editor.js
+89 −151 src/editor/EditorManager.js
+0 −0 src/editor/EditorUtils.js
+272 −0 src/editor/InlineTextEditor.js
+66 −0 src/editor/InlineWidget.js
+4 −0 src/extensions/default/README.txt
+5 −0 src/extensions/disabled/README.txt
+19 −0 src/extensions/disabled/circular_dependency_test/main.js
+18 −0 src/extensions/disabled/circular_dependency_test/secondary.js
+205 −0 src/extensions/disabled/quickopen_example/main.js
+ src/extensions/disabled/quickopen_example/ty.jpg
+4 −0 src/extensions/user/README.txt
+26 −14 src/file/FileUtils.js
+1 −1 src/file/NativeFileSystem.js
+14 −1 src/index.html
+146 −64 src/language/CSSUtils.js
+43 −2 src/language/HTMLUtils.js
+2 −2 src/language/JSLintUtils.js
+0 −0 src/preferences/PreferencesManager.js
+4 −4 src/project/FileIndexManager.js
+15 −14 src/project/FileSyncManager.js
+6 −5 src/project/FileViewController.js
+15 −14 src/project/ProjectManager.js
+10 −23 src/project/WorkingSetView.js
+18 −10 src/search/FindInFiles.js
+17 −9 src/search/QuickFileOpen.js
+10 −0 src/strings.js
+90 −7 src/styles/brackets.less
+6 −40 src/styles/brackets_codemirror_override.less
+1 −1 src/thirdparty/CodeMirror2
+0 −0 src/utils/Async.js
+69 −0 src/utils/ExtensionLoader.js
+64 −0 src/utils/NativeApp.js
+0 −0 src/utils/PerfUtils.js
+1 −1 src/utils/ShellAPI.js
+0 −0 src/utils/ViewUtils.js
+8 −6 src/widgets/Dialogs.js
+3 −3 test/SpecRunner.js
+246 −0 test/spec/CSSInlineEditor-test.js
+13 −0 test/spec/CSSUtils-test-files/issue-403-test.css
+43 −8 test/spec/CSSUtils-test.js
+37 −37 test/spec/CodeHintUtils-test.js
+0 −0 test/spec/DocumentCommandHandlers-test-files/test.js
+4 −4 test/spec/DocumentCommandHandlers-test.js
+22 −2 test/spec/Editor-test.js
+0 −4 test/spec/EditorManager-test-files/test.css
+0 −12 test/spec/EditorManager-test-files/test.html
+0 −144 test/spec/EditorManager-test.js
+4 −4 test/spec/InlineEditorProviders-test-files/test1.css
+2 −1 test/spec/InlineEditorProviders-test-files/test1.html
+3 −0 test/spec/InlineEditorProviders-test-files/testOneRuleFile.css
+704 −65 test/spec/InlineEditorProviders-test.js
+1 −1 test/spec/KeyMap-test.js
+1 −1 test/spec/NativeFileSystem-test.js
+1 −1 test/spec/PreferencesManager-test.js
+50 −12 test/spec/SpecRunnerUtils.js

0 comments on commit 96f31da

Please sign in to comment.