Skip to content

Instantly share code, notes, and snippets.

@andrewhl
Created November 5, 2014 21:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewhl/0be6b0727cc85537fdd9 to your computer and use it in GitHub Desktop.
Save andrewhl/0be6b0727cc85537fdd9 to your computer and use it in GitHub Desktop.
'use strict';
var DomService = function (ng) {
return {
get: function(selector) {
return ng.element(selector);
}
};
};
DomService.$inject = ['ng'];
module.exports = DomService;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment