Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2341 from adobe/jasonsanjose/jslint
Browse files Browse the repository at this point in the history
fix jslint errors
  • Loading branch information
njx committed Dec 12, 2012
2 parents 4a1a962 + 39c59de commit f120d22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/UpdateNotification.js
Expand Up @@ -22,7 +22,7 @@
*/

/*jslint vars: true, plusplus: true, devel: true, nomen: true, regexp: true, indent: 4, maxerr: 50 */
/*global define, $, brackets, PathUtils, window */
/*global define, $, brackets, PathUtils, window, Mustache */

/**
* Utilities functions for displaying update notifications
Expand Down
2 changes: 1 addition & 1 deletion src/utils/UrlParams.js
Expand Up @@ -41,7 +41,7 @@ define(function (require, exports, module) {
*/
UrlParams.prototype.parse = function (url) {
if (url) {
url = url.substring(indexOf("?") + 1);
url = url.substring(url.indexOf("?") + 1);
} else {
url = window.document.location.search.substring(1);
}
Expand Down

0 comments on commit f120d22

Please sign in to comment.