0.2.2 • Published 10 years ago

stik-url v0.2.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

#stik-url

##$url $url will help you interact with your url.

###Using it

stik.controller("YourCtrl", "YourAction", function($url){
  // http://my-website.com?someKey=someValue
  $url.queries(); // { someKey: "someValue" }

  // http://my-website.com#users
  $url.hash(); // "users"
  $url.hash("products");
  // http://my-website.com#products
});

Available methods:

  • baseUrl
  • relativeUrl
  • pathName
  • hash
  • locationHash
  • mainPath
  • queries