Created
November 30, 2012 18:56
-
-
Save ivan-hilckov/4177744 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Список всех модулей для работы страницы авторизации | |
| # [ [ {} ... {} ] [ {} ... {} ] [ {} ... {} ] ] | |
| # Каждый масив модулей грузиться последовательно | |
| # порядок загрузки пачки модуле опредиляется позициеей в массиве | |
| # | |
| # Модули внутри массива могут быть асинхроными и грузиться не последовательно | |
| window[ "Elections" ] = Elections = window[ "Elections" ] or {} | |
| window[ "Elections" ][ "page" ] = "auth" | |
| window[ "Elections" ][ "modules" ] = | |
| [ | |
| [ | |
| { | |
| nameClass: window[ "Elections" ][ "App" ] | |
| name: "core" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "Router" ] | |
| name: "router" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "Widgets" ][ "Openstat" ] | |
| name: "openstat" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "Widgets" ][ "Spike" ] | |
| name: "spike" | |
| load: true | |
| } | |
| ] | |
| [ | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Signin" ] | |
| name: "signin" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Signup" ] | |
| name: "signup" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Restore" ] | |
| name: "restore" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Faq" ] | |
| name: "faq" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Openid" ] | |
| name: "openid" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Livejournal" ] | |
| name: "lj" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "BanAuthorization" ] | |
| name: "ban_authorization" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "BanRegistration" ] | |
| name: "ban_registration" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "RestoreMail" ] | |
| name: "restore_mail" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Confirm" ] | |
| name: "confirm" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Activation" ] | |
| name: "activation" | |
| load: true | |
| } | |
| { | |
| nameClass: window[ "Elections" ][ "View" ][ "Error" ] | |
| name: "error" | |
| load: true | |
| } | |
| ] | |
| ] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment