From f6578f824dd0081599d5072ddc64dc03802562c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesu=CC=81s=20Pe=CC=81rez?= Date: Thu, 22 Jan 2015 18:37:23 +0100 Subject: [PATCH] Fix in the README (Browserify example of use) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a4e9c234..f96070d3 100644 --- a/README.md +++ b/README.md @@ -200,8 +200,8 @@ require('bootstrap')(jquery); require('bootstrap-material')(jquery); console.log('Is Bootstrap loaded?'); -console.log((typeof jquery().emulateTransitionEnd === 'function')); +console.log(typeof jquery.emulateTransitionEnd === 'function'); console.log('Is Bootstrap Material loaded?'); -console.log(jquery().material !== undefined); +console.log(typeof jquery.material === 'object'); ``` -NOTE: Until this [PR](https://github.com/twbs/bootstrap/pull/15640) is accepted in the main Bootstrap project this fork must be used: [https://github.com/eface2face/bootstrap-material-design](https://github.com/eface2face/bootstrap-material-design) \ No newline at end of file +NOTE: Until this [PR](https://github.com/twbs/bootstrap/pull/15640) to the main Bootstrap project is accepted this fork must be used: [https://github.com/eface2face/bootstrap-material-design](https://github.com/eface2face/bootstrap-material-design) \ No newline at end of file