Skip to content

Commit

Permalink
Rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
c9s committed May 23, 2016
1 parent 5ad6294 commit fe68224
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "jquery";
import ActionPlugin from "./action-plugin";
import Action from "./action";
import Action from "./Action";
import ActionPlugin from "./ActionPlugin";

export default class ActionBootstrapHighlight extends ActionPlugin {

Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/action-growl.ts → src/ActionGrowl.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// <reference path="jGrowl.d.ts" />

import Action from "./action";
import ActionPlugin from "./action-plugin";
import Action from "./Action";
import ActionPlugin from "./ActionPlugin";

export default class ActionGrowler extends ActionPlugin {

Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/action-msgbox.ts → src/ActionMsgbox.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// <reference path="jquery-scrollTo.d.ts" />
import "jquery";
import Action from "./action";
import ActionPlugin from "./action-plugin";
import Action from "./Action";
import ActionPlugin from "./ActionPlugin";

export default class ActionMsgbox extends ActionPlugin {

Expand Down
2 changes: 1 addition & 1 deletion src/action-plugin.ts → src/ActionPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
a = new ActionPlugin(action)
a = new ActionPlugin({ ... })
*/
import Action from "./action";
import Action from "./Action";

export default class ActionPlugin {

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ declare var Cookies;
declare var tinyMCE;

import "jquery";
import ActionPlugin from "./action-plugin";
import FormUtils from "./formutils";
import ActionPlugin from "./ActionPlugin";
import FormUtils from "./FormUtils";
import AIM from "./aim";

interface ActionSettings {
Expand Down
16 changes: 8 additions & 8 deletions src/entry.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import FormUtils from "./formutils";
import Action from "./action";
import ActionPlugin from "./action-plugin";
import ActionCsrfToken from "./action-csrf-token";
import ActionDevLoader from "./action-dev-loader";
import ActionMsgbox from "./action-msgbox";
import ActionGrowler from "./action-growl";
import ActionBootstrapHighlight from "./action-bootstrap-highlight";
import FormUtils from "./FormUtils";
import Action from "./Action";
import ActionPlugin from "./ActionPlugin";
import ActionCsrfToken from "./ActionCsrfToken";
import ActionDevLoader from "./ActionDevLoader";
import ActionMsgbox from "./ActionMsgbox";
import ActionGrowler from "./ActionGrowl";
import ActionBootstrapHighlight from "./ActionBootstrapHighlight";


(<any>window).FormUtils = FormUtils;
Expand Down

0 comments on commit fe68224

Please sign in to comment.