Torkel Ödegaard 10 роки тому
батько
коміт
9192acf250

+ 2 - 2
src/app/features/dashboard/dashboardNavCtrl.js

@@ -73,7 +73,7 @@ function (angular, _, moment) {
     };
 
     $scope.handleSaveDashError = function(err) {
-      if (err.data && err.data.status === "version-mismatch" ) {
+      if (err.data && err.data.status === "version-mismatch") {
         err.isHandled = true;
 
         $scope.appEvent('confirm-modal', {
@@ -86,7 +86,7 @@ function (angular, _, moment) {
         });
       }
 
-      if (err.data && err.data.status === "name-exists" ) {
+      if (err.data && err.data.status === "name-exists") {
         err.isHandled = true;
 
         $scope.appEvent('confirm-modal', {

+ 2 - 1
tasks/build_task.js

@@ -5,6 +5,7 @@ module.exports = function(grunt) {
   grunt.registerTask('build', [
     'jshint:source',
     'jshint:tests',
+    'jscs',
     'karma:test',
     'clean:on_start',
     'less:src',
@@ -40,7 +41,7 @@ module.exports = function(grunt) {
     });
     grunt.config('copy.backend_files', {
       expand: true,
-      src: ['conf/defaults.ini', 'vendor/**/*', 'scripts/*'],
+      src: ['conf/defaults.ini', 'conf/sample.ini', 'vendor/**/*', 'scripts/*'],
       options: { mode: true},
       dest: '<%= tempDir %>'
     });