Results 2 issues of Andrew Hanson

This is a solution to issue #57. I tested the code with image links and with regular links and it seems fully compatible. All unit tests are successfully passing.

For example: ``` javascript angular.module('app', ['restangular']).run(["Restangular", function (Restangular) { Restangular.setTransformOnlyServerElements(true); Restangular.addElementTransformer('items', false, function(obj) { if (!obj.fromServer) { console.debug("I wouldn't expect to get here"); } return obj; }); Restangular.one('items',0).get().then(function(c) { //do...

bug