Commit f06e85e59d167de902d8711dc8fdc7d60d9771f3

Fix message in the landing page of app

  Change message in landing page of app from mentioning only image to
mentioning image and web page.
  
241241 $("#sweet-list").html('');
242242 alert("Your SWeets are posted!!");
243243 },
244 error: function(data) {
245 alert("Failed to post your SWeets, please try again.");
246 }
247 });
244 error: function(data) {
245 alert("Failed to post your SWeets, please try again.");
246 }
247 });
248248 }
249249 });
250250 new AppView;
  
546546 switch (n) {
547547 case 0 : text = 'Getting annotations..';
548548 break;
549 case 1: text = 'Enter the URL of an image below, and start annotating!';
549 case 1: text = 'Enter the URL of an image or web page below, and start annotating!';
550550 break;
551551 case 2: text = 'Annotate the image, or see other annotations';
552552 break;
  
3838 <div class="form-group col-md-11">
3939 <label class="sr-only" for="img-url-input">Enter URL of the image</label>
4040 <input class="form-control" type="text"
41 placeholder="Enter URL of the image" id="img-url-input">
41 placeholder="Enter URL of the image or web page" id="img-url-input">
4242 </div>
4343 <button type="submit" class="btn btn-primary" id="img-url-load">Load</button>
4444 </form>