Skip to content

Commit 364ade7

Browse files
committed
Fixes #62 and Fixes #67 with firefox rendering schedules
1 parent 92c29ba commit 364ade7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

assets/src/modules/sm/Schedule/directives/scheduleDirective.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,14 +229,14 @@ angular.module('sm').directive('schedule', function($timeout, $filter) {
229229
horz = 1 - parseFloat('0.'+('' + offset.left).split('.')[1]);
230230
scope.grid.opts.pixelAlignment ='translate('+horz+','+vert+')';
231231

232-
// Chrome is dumb
233-
if(window.chrome) {
232+
// Everything is dumb
233+
//if(window.chrome) {
234234
var svg = $(elm).find('svg');
235235
svg.hide();
236236
setTimeout(function() {
237237
svg.show();
238238
},0);
239-
}
239+
//}
240240
},10,true);
241241

242242
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "schedulemaker",
3-
"version": "3.0.8",
3+
"version": "3.0.9",
44
"private": true,
55
"description": "A course database lookup tool and schedule building web application for use at Rochester Institute of Technology.",
66
"main": "index.php",

0 commit comments

Comments
 (0)