Skip to content

Commit

Permalink
normalize indentation by changing tabs to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
throwaway96 committed Mar 17, 2024
1 parent 8f07004 commit 045a2b4
Show file tree
Hide file tree
Showing 5 changed files with 229 additions and 229 deletions.
12 changes: 6 additions & 6 deletions frontend/App.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
Define your enyo/Application kind in this file.
Define your enyo/Application kind in this file.
*/

var
kind = require('enyo/kind'),
Application = require('enyo/Application'),
MainView = require('./views/MainView');
kind = require('enyo/kind'),
Application = require('enyo/Application'),
MainView = require('./views/MainView');

module.exports = kind({
kind: Application,
view: MainView
kind: Application,
view: MainView
});
6 changes: 3 additions & 3 deletions frontend/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
Instantiate your enyo/Application kind in this file. Note, application
rendering should be deferred until the DOM is ready by wrapping it in a
call to ready().
Instantiate your enyo/Application kind in this file. Note, application
rendering should be deferred until the DOM is ready by wrapping it in a
call to ready().
*/

var
Expand Down
Loading

0 comments on commit 045a2b4

Please sign in to comment.