From a5780a09cae0a0109103bf660da96e479ec5ef73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 9 Nov 2016 15:55:02 +0100 Subject: [PATCH] move to nuxt org, rename loading to nuxt-loading --- examples/vuex-store/README.md | 2 +- lib/app/App.vue | 10 +++++----- lib/app/client.js | 2 +- package.json | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/vuex-store/README.md b/examples/vuex-store/README.md index 4b68b5dfeed7..9fdf8a9d2cd3 100644 --- a/examples/vuex-store/README.md +++ b/examples/vuex-store/README.md @@ -72,4 +72,4 @@ export default { ## Context -To see the list of available keys in `context`, take a look at [this documentation](https://github.com/Atinux/nuxt.js/tree/master/examples/async-data#context). +To see the list of available keys in `context`, take a look at [this documentation](https://github.com/nuxt/nuxt.js/tree/master/examples/async-data#context). diff --git a/lib/app/App.vue b/lib/app/App.vue index ce4f28c44956..3c9982f91c81 100644 --- a/lib/app/App.vue +++ b/lib/app/App.vue @@ -1,14 +1,14 @@ diff --git a/lib/app/client.js b/lib/app/client.js index 9eeb8bb32ec1..9f7040b4cc83 100644 --- a/lib/app/client.js +++ b/lib/app/client.js @@ -172,7 +172,7 @@ Promise.all(resolveComponents) router.beforeEach(render.bind(_app)) // Call window.onModulesLoaded for jsdom testing (https://github.com/tmpvar/jsdom#dealing-with-asynchronous-script-loading) if (typeof window.onNuxtReady === 'function') { - window.onNuxtReady() + window.onNuxtReady(_app) } }) .catch((err) => { diff --git a/package.json b/package.json index a3443dc6a533..a61a4888e98a 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "nuxt", - "version": "0.2.4", + "version": "0.2.5", "description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)", "main": "index.js", "license": "MIT", - "repository": "Atinux/nuxt.js", + "repository": "nuxt/nuxt.js", "bin": { "nuxt": "./bin/nuxt" },