12345678910111213141516 |
- (function ($ang, win) {
- 'use strict';
- $ang.module('ylmis').controller("mapCtrl", ['$scope', '$rootScope', '$state', '$http', '$loading', '$alert', '$interval', '$window', '$modal', 'AuthUser',
- function ($scope, $rootScope, $state, $http, $loading, $alert, $desData, $interval, $window, $modal, AuthUser) {
- $("#mapimg").css("height", $(window).height());
- $("#mapimg").click(function (e) {
- if (e.offsetX >= 1000 && e.offsetX <= 1178 && e.offsetY >= 394 && e.offsetY <= 500) {
- $state.go("map-index");
- }
- else {
- }
- });
- }]);
- })(angular, this);
|