FolderView.js 182 Bytes
Newer Older
1 2 3 4 5 6
'use strict';

exports.back = function() {
  return function() {
    history.back();
  }
7 8 9 10 11 12
}

exports.link = function (url) {
  return function() {
    window.location.href = url
  }
13
}