Skip to content

Commit

Permalink
Minor frontend javascript cleanup.
Browse files Browse the repository at this point in the history
Capitalize all the provide/require classes and move provide above require.
  • Loading branch information
bamnet committed Feb 22, 2012
1 parent d7959c1 commit 4251a06
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions public/frontend_js/field.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
goog.provide('concerto.frontend.Field');

goog.require('goog.dom');
goog.require('goog.style');
goog.require('goog.text.LoremIpsum');

goog.provide('concerto.frontend.Field');



/**
Expand Down
4 changes: 2 additions & 2 deletions public/frontend_js/position.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
goog.provide('concerto.frontend.Position');

goog.require('concerto.frontend.Field');
goog.require('goog.array');
goog.require('goog.dom');
goog.require('goog.object');
goog.require('goog.style');

goog.provide('concerto.frontend.position');



/**
Expand Down
6 changes: 3 additions & 3 deletions public/frontend_js/screen.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
goog.require('concerto.frontend.template');
goog.provide('concerto.frontend.Screen');

goog.require('concerto.frontend.Template');
goog.require('goog.dom');
goog.require('goog.net.XhrIo');
goog.require('goog.net.XhrManager');
goog.require('goog.style');

goog.provide('concerto.frontend.screen');



/**
Expand Down
6 changes: 3 additions & 3 deletions public/frontend_js/template.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
goog.require('concerto.frontend.position');
goog.provide('concerto.frontend.Template');

goog.require('concerto.frontend.Position');
goog.require('goog.array');
goog.require('goog.dom');
goog.require('goog.style');

goog.provide('concerto.frontend.template');



/**
Expand Down

0 comments on commit 4251a06

Please sign in to comment.