Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"browser": true,
"eqnull": true,
"expr": true,
"globalstrict": true,
"globalstrict": false,
"immed": true,
"indent": 2,
"laxbreak": true,
Expand All @@ -14,6 +14,7 @@
"nonew": true,
"quotmark": true,
"smarttabs": true,
"strict": true,
"sub": true,
"trailing": true,
"undef": true,
Expand Down
3 changes: 2 additions & 1 deletion demo/demo.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
'use strict';

var myapp = angular.module('sortableApp', ['ui.sortable']);

myapp.controller('sortableController', function ($scope) {
'use strict';

var tmpList = [];

for (var i = 1; i <= 6; i++){
Expand Down
2 changes: 2 additions & 0 deletions gruntFile.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* jshint node:true */

'use strict';

module.exports = function(grunt) {
Expand Down