瀏覽代碼

Updated realm.

bmallred 13 年之前
父節點
當前提交
8a9467c9da
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      armory.js

+ 1 - 1
armory.js

@ -2,7 +2,7 @@ angular.module('WowArmory', ['ngResource']);
2 2
3 3
function ArmoryController($scope, $resource) {
4 4
    $scope.armory = $resource('//:server/api/wow/guild/:realm/:guild', 
5
        { server: 'us.battle.net', realm: 'alkaline', guild: 'alkaline', fields: 'members', jsonp: 'angular.callbacks._0' }, 
5
        { server: 'us.battle.net', realm: 'hellscream', guild: 'alkaline', fields: 'members', jsonp: 'angular.callbacks._0' }, 
6 6
        { query: { method: 'JSONP' }});
7 7
8 8
    $scope.Guild = $scope.armory.get();