removed left over references to SENSE_VERSION

This commit is contained in:
Boaz Leskes 2014-01-22 18:32:58 +01:00
parent 8f332fb697
commit 1902a798d7
4 changed files with 3 additions and 6 deletions

View file

@ -35,7 +35,6 @@
"globals": {
"define": false,
"require": false,
"SENSE_VERSION": true
"require": false
}
}

View file

@ -220,12 +220,12 @@ define([
});
/**
* Display the welcome popul if it has not been shown yet
* Display the welcome popup if it has not been shown yet
*/
if (!localStorage.getItem("version_welcome_shown")) {
require(['welcome_popup'], function ($welcomePopup) {
$welcomePopup.one('shown', function () {
localStorage.setItem("version_welcome_shown", SENSE_VERSION);
localStorage.setItem("version_welcome_shown", '@@MARVEL_REVISION');
});
$welcomePopup.modal('show');
});

View file

@ -1,7 +1,6 @@
{
"extends": "../.jshintrc",
"globals": {
"SENSE_VERSION": true,
"define": false,
"require": false,
"module": false,

View file

@ -43,7 +43,6 @@
/* global QUnit */
QUnit.config.autostart = false;
var SENSE_VERSION = '0.9.0';
require.config({
baseUrl: '../app'
});