From ba7787c739f9669a86e0f84479e9d3c987473326 Mon Sep 17 00:00:00 2001 From: Michael Warner Date: Fri, 17 Feb 2017 13:08:19 -0500 Subject: [PATCH] Update README.md Added Semicolons to docs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cb409bd..83ce10b 100644 --- a/README.md +++ b/README.md @@ -184,11 +184,11 @@ cfpLoadingBar.inc(); // the progress increases. This is to prevent the loading bar from appearing // completed (or almost complete) before the XHR request has responded. -cfpLoadingBar.set(0.3) // Set the loading bar to 30% -cfpLoadingBar.status() // Returns the loading bar's progress. +cfpLoadingBar.set(0.3); // Set the loading bar to 30% +cfpLoadingBar.status(); // Returns the loading bar's progress. // -> 0.3 -cfpLoadingBar.complete() +cfpLoadingBar.complete(); // Set the loading bar's progress to 100%, and then remove it from the DOM. ```