Advertisement
Guest User

Untitled

a guest
May 4th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. .service('PropriedadesCompartilhadas', function () {
  2. return {
  3. getItem: function () {
  4. return window.localStorage['itemSelecionado'];
  5. },
  6. setItem: function (dado) {
  7. window.localStorage['itemSelecionado'] = dado;
  8. }
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement