Skip to content

Commit

Permalink
moved filer files to new directory
Browse files Browse the repository at this point in the history
  • Loading branch information
K-LV committed Apr 2, 2015
1 parent 7f4fc6c commit c2942e7
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/filesystem/File.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ define(function (require, exports, module) {
"use strict";

var FileSystemEntry = require("filesystem/FileSystemEntry"),
Content = require("extensions/default/brackets-browser-livedev/nohost/src/content"),
Content = require("filesystem/impls/filer/lib/content"),
Path = require("filesystem/impls/filer/BracketsFiler").Path,
defaultHTML = require("text!filesystem/impls/lib/default.html");
defaultHTML = require("text!filesystem/impls/filer/lib/default.html");


/*
Expand Down
2 changes: 1 addition & 1 deletion src/filesystem/impls/filer/BlobUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
define(function (require, exports, module) {
"use strict";

var Handlers = require("filesystem/impls/lib/handlers");
var Handlers = require("filesystem/impls/filer/lib/handlers");

// BlobUtils provides an opportunistic cache for BLOB Object URLs
// which can be looked-up synchronously.
Expand Down
2 changes: 1 addition & 1 deletion src/filesystem/impls/filer/FilerFileSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ define(function (require, exports, module) {
Filer = require("filesystem/impls/filer/BracketsFiler"),
Dialog = require("thirdparty/filer-dialogs/filer-dialogs"),
BlobUtils = require("filesystem/impls/filer/BlobUtils"),
Content = require("extensions/default/brackets-browser-livedev/nohost/src/content");
Content = require("filesystem/impls/filer/lib/content");

var fs = Filer.fs(),
Path = Filer.Path,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
define(function (require, exports) {
"use strict";

var Content = require("filesystem/impls/lib/content");
var Content = require("filesystem/impls/filer/lib/content");
var Filer = require("filesystem/impls/filer/BracketsFiler");
var Path = Filer.Path;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
define(function (require, exports, module) {
"use strict";

var Content = require("filesystem/impls/lib/content");
var Log = require("filesystem/impls/lib/log");
var Async = require("filesystem/impls/lib/async");
var CSSRewriter = require("filesystem/impls/lib/CSSRewriter");
var Content = require("filesystem/impls/filer/lib/content");
var Log = require("filesystem/impls/filer/lib/log");
var Async = require("filesystem/impls/filer/lib/async");
var CSSRewriter = require("filesystem/impls/filer/lib/CSSRewriter");
var Filer = require("filesystem/impls/filer/BracketsFiler");
var Path = Filer.Path;

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
define(function (require, exports, module) {
"use strict";

var Content = require("filesystem/impls/lib/content");
var Log = require("filesystem/impls/lib/log");
var HTMLRewriter = require("filesystem/impls/lib/HTMLRewriter");
var CSSRewriter = require("filesystem/impls/lib/CSSRewriter");
var Content = require("filesystem/impls/filer/lib/content");
var Log = require("filesystem/impls/filer/lib/log");
var HTMLRewriter = require("filesystem/impls/filer/lib/HTMLRewriter");
var CSSRewriter = require("filesystem/impls/filer/lib/CSSRewriter");
var Filer = require("filesystem/impls/filer/BracketsFiler");
var Path = Filer.Path;

Expand Down
File renamed without changes.

0 comments on commit c2942e7

Please sign in to comment.