selectors.js 232 B

1234567891011
  1. (function () {
  2. 'use strict';
  3. window.getElement = function(selector) {
  4. return $('#misago-fixture ' + selector);
  5. };
  6. window.getElementText = function(selector) {
  7. return $.trim(getElement(selector).text());
  8. };
  9. }());